Developer 역할 Spring 골격 smoke #12

Open
forge-bot wants to merge 7 commits from forge/role-developer-live-v2-001-attempt-1-run-53f9c6cb3b6d into main
Showing only changes of commit a6d248bf1b - Show all commits

View file

@ -0,0 +1,19 @@
package com.example.developer;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;
import static org.assertj.core.api.Assertions.assertThat;
@SpringBootTest
class DeveloperApplicationTests {
@Autowired
private DeveloperApplication application;
@Test
void contextLoads() {
assertThat(application).isNotNull();
}
}