/
frastercom
/
testExemple
Обзор
Документация
Войти
/
frastercom
/
testExemple
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/test/java/com/example/restmyfirstproject/sevirces/ClientsDaoTest.java
22 строки
556 B
Timofey Konyshev
Initial commit
26 мар 2022, 15:12
26 мар 2022, 15:12
f00a672
Код
Авторство
О чём код?
package com.example.restmyfirstproject.sevirces; import com.example.restmyfirstproject.domain.Clients; import org.junit.jupiter.api.Test; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import static org.junit.jupiter.api.Assertions.*; @SpringBootTest class ClientsDaoTest { @Autowired private ClientsDao clientsDao; @Test void create() { Clients clients = new Clients(); clients.setName("testmoc"); clientsDao.create(clients); } }