Skip to content

Commit

Permalink
fix: ApplicationTests classes 속성 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yo0oni committed Jan 10, 2024
1 parent 6f993ef commit 8d34388
Show file tree
Hide file tree
Showing 29 changed files with 56 additions and 8 deletions.
1 change: 1 addition & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
26 changes: 26 additions & 0 deletions .idea/sonarlint/issuestore/index.pb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
26 changes: 26 additions & 0 deletions .idea/sonarlint/securityhotspotstore/index.pb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions backend/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ spring:
hibernate:
ddl-auto: create
dialect: org.hibernate.dialect.MySQLDialect
generate-ddl: true

Original file line number Diff line number Diff line change
@@ -1,18 +1,11 @@
package com.isp.backend;

import org.junit.jupiter.api.Test;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.context.ApplicationContext;

import static org.junit.jupiter.api.Assertions.assertNotNull;

@SpringBootTest
@SpringBootTest(classes = BackendApplicationTests.class)
class BackendApplicationTests {

@Test
void contextLoads() {
ApplicationContext context = SpringApplication.run(BackendApplication.class);
assertNotNull(context);
}
}

0 comments on commit 8d34388

Please sign in to comment.