Spring Boot/Doma/ユニットテスト

テストの方法

とりあえずコレで駆動できるかテストする

@RunWith(SpringRunner.class)
@SpringBootTest(webEnvironment=WebEnvironment.NONE)
@ActiveProfiles("test")
public class HogeDaoTest {
    @Autowired
    private HogeDao hogeDao;
 
    @Test
    public void test() {
        fail("Not yet implemented");
    }
}