-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: created composite application
- Loading branch information
1 parent
33809a6
commit d8e360d
Showing
9 changed files
with
94 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 3 additions & 3 deletions
6
online-banking-app/src/main/java/com/adorsys/webank/OnlineBankingApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
29 changes: 15 additions & 14 deletions
29
online-banking-app/src/test/java/com/adorsys/webank/OnlineBankingApplicationTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,15 @@ | ||
package com.adorsys.webank.obs; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.springframework.boot.test.context.SpringBootTest; | ||
|
||
@SpringBootTest(classes = OnlineBankingApplication.class) // Specify main class | ||
public class OnlineBankingApplicationTests { | ||
|
||
@Test | ||
public void contextLoads() { | ||
// This test intentionally does nothing. | ||
// The @SpringBootTest annotation simulates application startup. | ||
} | ||
} | ||
//package com.adorsys.webank; | ||
// | ||
//import com.adorsys.webank.obs.OnlineBankingApplication; | ||
//import org.junit.jupiter.api.Test; | ||
//import org.springframework.boot.test.context.SpringBootTest; | ||
// | ||
//@SpringBootTest(classes = OnlineBankingApplication.class) // Specify main class | ||
//public class OnlineBankingApplicationTests { | ||
// | ||
// @Test | ||
// public void contextLoads() { | ||
// // This test intentionally does nothing. | ||
// // The @SpringBootTest annotation simulates application startup. | ||
// } | ||
//} |