Skip to content

Commit

Permalink
#1 Setup Project - Project name
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinacupac committed Apr 19, 2022
1 parent b51ae1a commit ed9b5f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
rootProject.name = 'tdd-banking-kata'
rootProject.name = 'banking-kata'
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
public class TddBankingKataApplication {
public class BankingApplication {

public static void main(String[] args) {
SpringApplication.run(TddBankingKataApplication.class, args);
SpringApplication.run(BankingApplication.class, args);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import static org.assertj.core.api.Assertions.assertThat;

@SpringBootTest
class TddBankingKataApplicationTests {
class BankingApplicationTests {

@Test
void contextLoads() {
Expand Down

0 comments on commit ed9b5f7

Please sign in to comment.