Skip to content

Commit

Permalink
rename spring app classes for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
pirgeo committed Jun 20, 2023
1 parent 6a35263 commit 33e7164
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,12 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;


@SpringBootApplication
public class Application {
public class DeliveriesApplication {

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

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class DemoApplicationTests {
class DemoDeliveriesApplicationTests {

@Test
void contextLoads() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,11 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;


@SpringBootApplication
public class Application {
public class OrdersApplication {

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

}
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class DemoApplicationTests {
class DemoOrdersApplicationTests {

@Test
void contextLoads() {
Expand Down

0 comments on commit 33e7164

Please sign in to comment.