From 193ab871ab8bb06e58946432562faa6cd02293c4 Mon Sep 17 00:00:00 2001 From: Bogumil Zebek Date: Fri, 7 Feb 2020 09:17:51 +0100 Subject: Extract jdbi query Issue-ID: DCAEGEN2-2032 Signed-off-by: Zebek Bogumil Change-Id: I72e9602018ada44e36339a89034bee56bc9f8e8c --- .../impl/DcaeServiceTypesApiServiceImplTests.java | 25 ---------------------- 1 file changed, 25 deletions(-) (limited to 'src/test/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImplTests.java') diff --git a/src/test/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImplTests.java b/src/test/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImplTests.java index 13dd820..bd13abe 100644 --- a/src/test/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImplTests.java +++ b/src/test/java/io/swagger/api/impl/DcaeServiceTypesApiServiceImplTests.java @@ -222,29 +222,4 @@ public class DcaeServiceTypesApiServiceImplTests { throw new RuntimeException("Unexpected exception: post new 200", e); } } - - @Test - public void shouldReturnOriginalTypeName(){ - // given - String typeName = "abc"; - - // when - final String actual = DcaeServiceTypesApiServiceImpl.resolveTypeName(typeName); - - // then - assertEquals("abc", actual); - } - - @Test - public void shouldTransformAsteriskToPercentCharacterInTypeName(){ - // given - String typeName = "abc*d"; - - // when - final String actual = DcaeServiceTypesApiServiceImpl.resolveTypeName(typeName); - - // then - assertEquals("abc%d", actual); - } - } -- cgit 1.2.3-korg