Bringing the code coverage to 100% :) Constructor wasn't being tested.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@754610 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8a51b94300
commit
f4a99655f0
|
@ -30,6 +30,11 @@ public class EnumUtilsTest extends TestCase {
|
|||
return suite;
|
||||
}
|
||||
|
||||
public void testConstructable() {
|
||||
// enforce public constructor
|
||||
new EnumUtils();
|
||||
}
|
||||
|
||||
public void testGetEnumMap() {
|
||||
try {
|
||||
EnumUtils.getEnumMap(null);
|
||||
|
|
Loading…
Reference in New Issue