Improve handling 'empty'/null string in Service fields
[sdc.git] / catalog-be / src / test / java / org / openecomp / sdc / be / impl / ComponentsUtilsTest.java
index 0fb88a5..5acc1fd 100644 (file)
@@ -562,18 +562,6 @@ class ComponentsUtilsTest {
         testSubject.auditComponent(responseFormat, modifier, component, actionEnum, type, prevComponent);
     }
 
-    @Test
-    void testValidateStringNotEmpty() {
-        ComponentsUtils testSubject;
-        String value = "";
-        boolean result;
-
-        // default test
-        testSubject = createTestSubject();
-        result = testSubject.validateStringNotEmpty(value);
-        assertThat(result).isFalse();
-    }
-
     @Test
     void testConvertFromStorageResponseForAdditionalInformation() {
         ComponentsUtils testSubject;