TeStereo report

@Test public void testConstructor(){ assertNotNull(new ExceptionUtils()); final Constructor[] cons=ExceptionUtils.class.getDeclaredConstructors(); assertEquals(1,cons.length); assertTrue(Modifier.isPublic(cons[0].getModifiers())); assertTrue(Modifier.isPublic(ExceptionUtils.class.getModifiers())); assertFalse(Modifier.isFinal(ExceptionUtils.class.getModifiers())); }