Skip to content

Commit

Permalink
Merge pull request #328 from AzeemMuzammil/fix-disable-tests
Browse files Browse the repository at this point in the history
Disable architecture-model-generator Tests Temporarily
  • Loading branch information
dilanSachi authored Feb 16, 2024
2 parents d3f3484 + 47acc51 commit 06a6473
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class ServiceGeneratorTests {
private static final String RESULTS = "results";
Gson gson = new GsonBuilder().serializeNulls().create();

@Test(description = "model generation for single module projects")
@Test(description = "model generation for single module projects", enabled = false)
public void testSingleModuleModelGeneration() throws IOException {
Path projectPath = RES_DIR.resolve(BALLERINA).resolve(
Path.of("single_service_sample"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class TypeGeneratorTests {
private static final String RESULTS = "results";
Gson gson = new GsonBuilder().serializeNulls().create();

@Test(description = "simple type model generation")
@Test(description = "simple type model generation", enabled = false)
public void testSimpleTypeModelGeneration() throws IOException {
Path projectPath = RES_DIR.resolve(BALLERINA).resolve(
Path.of("type_gen_simple"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public void startLanguageServer() {
this.serviceEndpoint = TestUtil.initializeLanguageSever();
}

@Test(description = "test model generation for multi-module project")
@Test(description = "test model generation for multi-module project", enabled = false)
public void testMultiModuleProject() throws IOException, ExecutionException, InterruptedException {
Path projectPath = RES_DIR.resolve(BALLERINA).resolve(
Path.of("reservation_api", "reservation_service.bal"));
Expand Down Expand Up @@ -104,7 +104,7 @@ public void testMultiModuleProject() throws IOException, ExecutionException, Int

}

@Test(description = "test model generation for multiple projects with grpc and http services")
@Test(description = "test model generation for multiple projects with grpc and http services", enabled = false)
public void testGRPCWorkspaceTest() throws IOException, ExecutionException, InterruptedException {

Path project1 = RES_DIR.resolve(BALLERINA).resolve(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void startLanguageServer() {
this.serviceEndpoint = TestUtil.initializeLanguageSever();
}

@Test(description = "Test Persist ER Model generation")
@Test(description = "Test Persist ER Model generation", enabled = false)
public void testPersistERModelGeneration() throws IOException, ExecutionException, InterruptedException {

Path balFile = RES_DIR.resolve(BALLERINA).resolve(
Expand Down

0 comments on commit 06a6473

Please sign in to comment.