Update pom.xml for CircleCI to test java-related projects only (#5477)

Update pom.xml for CircleCI to test java-related projects only
This commit is contained in:
wing328
2017-04-27 00:49:03 +08:00
committed by GitHub
parent 58db6a5e14
commit 89464cbe5f
5 changed files with 236 additions and 29 deletions

View File

@@ -1,13 +1,14 @@
package io.swagger.codegen.javaPlayFramework;
import io.swagger.codegen.AbstractOptionsTest;
import io.swagger.codegen.CodegenConfig;
import io.swagger.codegen.java.JavaClientOptionsTest;
import io.swagger.codegen.languages.JavaPlayFrameworkCodegen;
import io.swagger.codegen.options.JavaPlayFrameworkOptionsProvider;
import io.swagger.codegen.options.OptionsProvider;
import mockit.Expectations;
import mockit.Tested;
public class JavaPlayFrameworkOptionsTest extends JavaClientOptionsTest {
public class JavaPlayFrameworkOptionsTest extends AbstractOptionsTest {
@Tested
private JavaPlayFrameworkCodegen clientCodegen;
@@ -16,6 +17,10 @@ public class JavaPlayFrameworkOptionsTest extends JavaClientOptionsTest {
super(new JavaPlayFrameworkOptionsProvider());
}
protected JavaPlayFrameworkOptionsTest(OptionsProvider optionsProvider) {
super(optionsProvider);
}
@Override
protected CodegenConfig getCodegenConfig() {
return clientCodegen;