Recover removed test case for JavaIdentifierNormalizerTest
[mdsal.git] / binding2 / mdsal-binding2-generator-util / src / test / java / org / opendaylight / mdsal / binding / javav2 / generator / util / JavaIdentifierNormalizerTest.java
index b987706fdd47193570b71e3b0dbfb586590793b4..ab80a93b389d844196add39f61c443504784aae9 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.mdsal.binding.javav2.generator.util;
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNotNull;
 import static org.junit.Assert.assertTrue;
-
 import org.junit.Test;
 import org.opendaylight.mdsal.binding.javav2.util.BindingMapping;
 
@@ -468,6 +467,10 @@ public class JavaIdentifierNormalizerTest {
         tested = "org.opendaylight.example.test.rev000000.data.con";
         expected = "org.opendaylight.example.test.rev000000.data.con_";
         testRealPackageNameExample(tested, expected);
+
+        tested = "org.opendaylight.example.test.rev000000.data.CON";
+        expected = "org.opendaylight.example.test.rev000000.data.con_";
+        testRealPackageNameExample(tested, expected);
     }
 
     private void testRealPackageNameExample(final String tested, final String expected) {