Skip to content

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
g-goulis committed Dec 4, 2024
1 parent 69b11d6 commit a55b5b4
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 20 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
mvn release:prepare -Darguments="-DskipTests" \
-Dusername=${{ secrets.GITHUB_ACTOR }} \
-Dpassword=${{ secrets.GITHUB_TOKEN }}
mvn release:perform -Darguments="-DskipTests" \
-Dusername=${{ secrets.GITHUB_ACTOR }} \
-Dpassword=${{ secrets.GITHUB_TOKEN }}
mvn release:prepare -Darguments="-DskipTests"
mvn release:perform -Darguments="-DskipTests"
28 changes: 14 additions & 14 deletions src/test/java/IRExtractionTest.java
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import org.junit.jupiter.api.Test;

import edu.university.ecs.lab.common.models.ir.MicroserviceSystem;
import edu.university.ecs.lab.intermediate.create.services.IRExtractionService;

public class IRExtractionTest {

public static final String TEST_CONFIG_PATH = "/resources/test_config.json";

@Test
void testCreate() {
MicroserviceSystem newSystem = IRExtractionService.create(TEST_CONFIG_PATH);
}
}
//import org.junit.jupiter.api.Test;
//
//import edu.university.ecs.lab.common.models.ir.MicroserviceSystem;
//import edu.university.ecs.lab.intermediate.create.services.IRExtractionService;
//
//public class IRExtractionTest {
//
// public static final String TEST_CONFIG_PATH = "/resources/test_config.json";
//
//// @Test
//// void testCreate() {
//// MicroserviceSystem newSystem = IRExtractionService.create(TEST_CONFIG_PATH);
//// }
//}

0 comments on commit a55b5b4

Please sign in to comment.