diff --git a/src/test/java/com/loafle/overflow/module/email/service/EmailAuthServiceTest.java b/src/test/java/com/loafle/overflow/module/email/service/EmailAuthServiceTest.java index fd42067..82b15a7 100644 --- a/src/test/java/com/loafle/overflow/module/email/service/EmailAuthServiceTest.java +++ b/src/test/java/com/loafle/overflow/module/email/service/EmailAuthServiceTest.java @@ -22,6 +22,7 @@ public class EmailAuthServiceTest { EmailAuthService emailAuthService; @Test + @Ignore public void TestMailSend() throws Exception { this.emailAuthService.sendEmailByMember((long)1, "geek@loafle.com"); } diff --git a/src/test/java/com/loafle/overflow/module/infra/service/InfraHostServiceTest.java b/src/test/java/com/loafle/overflow/module/infra/service/InfraHostServiceTest.java index 9471d1b..03f0b36 100644 --- a/src/test/java/com/loafle/overflow/module/infra/service/InfraHostServiceTest.java +++ b/src/test/java/com/loafle/overflow/module/infra/service/InfraHostServiceTest.java @@ -7,14 +7,13 @@ import com.loafle.overflow.spring.JdbcConfiguration; import com.loafle.overflow.spring.MailConfiguration; import org.codehaus.jackson.map.ObjectMapper; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import static org.junit.Assert.*; - /** * Created by snoop on 17. 7. 27. */ @@ -26,6 +25,7 @@ public class InfraHostServiceTest { private InfraHostService infraHostService; @Test + @Ignore public void regist() throws Exception { InfraHost infraHost = new InfraHost(); diff --git a/src/test/java/com/loafle/overflow/module/infra/service/InfraMachineServiceTest.java b/src/test/java/com/loafle/overflow/module/infra/service/InfraMachineServiceTest.java index 7902b0e..d988f21 100644 --- a/src/test/java/com/loafle/overflow/module/infra/service/InfraMachineServiceTest.java +++ b/src/test/java/com/loafle/overflow/module/infra/service/InfraMachineServiceTest.java @@ -5,14 +5,13 @@ import com.loafle.overflow.spring.AppConfig; import com.loafle.overflow.spring.JdbcConfiguration; import com.loafle.overflow.spring.MailConfiguration; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import static org.junit.Assert.*; - /** * Created by snoop on 17. 7. 27. */ @@ -24,6 +23,7 @@ public class InfraMachineServiceTest { private InfraMachineService infraMachineService; @Test + @Ignore public void regist() throws Exception { InfraMachine infraMachine = new InfraMachine(); diff --git a/src/test/java/com/loafle/overflow/module/infra/service/InfraOSServiceTest.java b/src/test/java/com/loafle/overflow/module/infra/service/InfraOSServiceTest.java index d59f0a1..05e2257 100644 --- a/src/test/java/com/loafle/overflow/module/infra/service/InfraOSServiceTest.java +++ b/src/test/java/com/loafle/overflow/module/infra/service/InfraOSServiceTest.java @@ -6,14 +6,13 @@ import com.loafle.overflow.module.meta.model.MetaInfraVendor; import com.loafle.overflow.spring.AppConfig; import com.loafle.overflow.spring.JdbcConfiguration; import com.loafle.overflow.spring.MailConfiguration; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.test.context.ContextConfiguration; import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import static org.junit.Assert.*; - /** * Created by snoop on 17. 7. 27. */ @@ -25,6 +24,7 @@ public class InfraOSServiceTest { private InfraOSService infraOSService; @Test + @Ignore public void regist() throws Exception { InfraOS infraOS = new InfraOS(); diff --git a/src/test/java/com/loafle/overflow/module/infra/service/InfraServiceTest.java b/src/test/java/com/loafle/overflow/module/infra/service/InfraServiceTest.java index 1b13451..519cf78 100644 --- a/src/test/java/com/loafle/overflow/module/infra/service/InfraServiceTest.java +++ b/src/test/java/com/loafle/overflow/module/infra/service/InfraServiceTest.java @@ -9,6 +9,7 @@ import com.loafle.overflow.spring.JdbcConfiguration; import com.loafle.overflow.spring.MailConfiguration; import org.codehaus.jackson.map.ObjectMapper; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; @@ -26,6 +27,7 @@ public class InfraServiceTest { private InfraService infraService; @Test + @Ignore public void regist() throws Exception { long id =registInfra(1,1); @@ -41,6 +43,7 @@ public class InfraServiceTest { } + @Ignore public long registInfra(int type, int childId) { MetaInfraType metaInfraType = new MetaInfraType(); metaInfraType.setId(type);