test
This commit is contained in:
snoop 2017-06-23 18:57:30 +09:00
parent 285edbee26
commit 7fcac63be5

View File

@ -29,7 +29,7 @@ public class NoAuthProbeDAOTest {
@Test
public void testFindTempKey() {
NoAuthProbe probe = this.noAuthProbeDAO.findByTempKey("1cf2555c57d511e79714080027658d13");
NoAuthProbe probe = this.noAuthProbeDAO.findByTempProbeKey("1cf2555c57d511e79714080027658d13");
Assert.assertNotEquals(probe, null);
@ -64,7 +64,7 @@ public class NoAuthProbeDAOTest {
@Test
public void update() {
NoAuthProbe probe = this.noAuthProbeDAO.findByTempKey("1cf2555c57d511e79714080027658d13");
NoAuthProbe probe = this.noAuthProbeDAO.findByTempProbeKey("1cf2555c57d511e79714080027658d13");
probe.setStatus(AuthType.A);
@ -75,8 +75,10 @@ public class NoAuthProbeDAOTest {
@Test
public void list() {
Domain domain = new Domain();
domain.setId(1);
List<NoAuthProbe> probes = this.noAuthProbeDAO.findAllByDomainId(1);
List<NoAuthProbe> probes = this.noAuthProbeDAO.findAllByDomain(domain);
Assert.assertNotEquals(probes.size(), 0);