Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

public class GeneratorServiceTest {

@Test(enabled = false, description = "test generator service with java 3.0")
@Test(description = "test generator service with java 3.0")
public void testGeneratorServiceJava3() {

GenerationRequest request = new GenerationRequest();
Expand All @@ -33,7 +33,7 @@ public void testGeneratorServiceJava3() {
Assert.assertFalse(files.isEmpty());
}

@Test(enabled = false, description = "test generator service with java 2.0")
@Test(description = "test generator service with java 2.0")
public void testGeneratorServiceJava2() {

GenerationRequest request = new GenerationRequest();
Expand All @@ -50,7 +50,7 @@ public void testGeneratorServiceJava2() {
Assert.assertFalse(files.isEmpty());
}

@Test(enabled = false, description = "test generator service with java 3.0 and spec 2.0")
@Test(description = "test generator service with java 3.0 and spec 2.0")
public void testGeneratorServiceJava3Spec2() {

GenerationRequest request = new GenerationRequest();
Expand All @@ -67,7 +67,7 @@ public void testGeneratorServiceJava3Spec2() {
Assert.assertFalse(files.isEmpty());
}

@Test(enabled = false, description = "test generator service with java 3.0, spec as ref to file")
@Test(description = "test generator service with java 3.0, spec as ref to file")
public void testGeneratorServiceJava3RefSpec() {
GenerationRequest request = new GenerationRequest();
request
Expand All @@ -84,7 +84,7 @@ public void testGeneratorServiceJava3RefSpec() {
}


@Test(enabled = false, description = "test generator service with java client 3.0")
@Test(description = "test generator service with java client 3.0")
public void testGeneratorServiceJavaClient3() {

GenerationRequest request = new GenerationRequest();
Expand All @@ -105,7 +105,7 @@ public void testGeneratorServiceJavaClient3() {
Assert.assertFalse(files.isEmpty());
}

@Test(enabled = false, description = "test generator service with java client 2.0")
@Test(description = "test generator service with java client 2.0")
public void testGeneratorServiceJavaClient2() {
GenerationRequest request = new GenerationRequest();
request
Expand Down