Developer 역할 Spring 골격 smoke (role-developer-live-v2-001)

This commit is contained in:
forge-bot 2026-07-14 08:26:00 +00:00
parent c27062d0e2
commit a6d248bf1b

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();
}
}