some small optimizations

This commit is contained in:
Kristof Vrolijkx
2016-05-16 17:58:06 +02:00
parent 68d47be9fd
commit ec65eb5975
5 changed files with 6 additions and 13 deletions

View File

@@ -6,11 +6,11 @@ import org.testng.reporters.Files;
import java.io.IOException;
import java.util.Map;
import io.swagger.codegen.utils.IntegrationTestPathsConfig;
import io.swagger.codegen.testutils.IntegrationTestPathsConfig;
import io.swagger.models.Swagger;
import io.swagger.parser.SwaggerParser;
import static io.swagger.codegen.utils.AssertFile.assertPathEqualsRecursively;
import static io.swagger.codegen.testutils.AssertFile.assertPathEqualsRecursively;
public abstract class AbstractIntegrationTest {

View File

@@ -1,4 +1,4 @@
package io.swagger.codegen.utils;
package io.swagger.codegen.testutils;
import org.testng.Assert;

View File

@@ -1,4 +1,4 @@
package io.swagger.codegen.utils;
package io.swagger.codegen.testutils;
import java.nio.file.Path;
import java.nio.file.Paths;

View File

@@ -6,7 +6,7 @@ import java.util.Map;
import io.swagger.codegen.AbstractIntegrationTest;
import io.swagger.codegen.CodegenConfig;
import io.swagger.codegen.languages.TypeScriptAngular2ClientCodegen;
import io.swagger.codegen.utils.IntegrationTestPathsConfig;
import io.swagger.codegen.testutils.IntegrationTestPathsConfig;
public class TypescriptAngular2AdditionalPropertiesIntegrationTest extends AbstractIntegrationTest {