diff --git a/src/test/java/com/iemr/inventory/RoleMaster5ApplicationTests.java b/src/test/java/com/iemr/inventory/RoleMaster5ApplicationTests.java deleted file mode 100644 index 0c412b9..0000000 --- a/src/test/java/com/iemr/inventory/RoleMaster5ApplicationTests.java +++ /dev/null @@ -1,40 +0,0 @@ -/* -* AMRIT – Accessible Medical Records via Integrated Technology -* Integrated EHR (Electronic Health Records) Solution -* -* Copyright (C) "Piramal Swasthya Management and Research Institute" -* -* This file is part of AMRIT. -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see https://www.gnu.org/licenses/. -*/ -package com.iemr.inventory; - -import org.junit.Test; -import org.junit.runner.RunWith; -import org.springframework.boot.test.context.SpringBootTest; -import org.springframework.test.context.ActiveProfiles; -import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; -import org.springframework.test.context.junit4.SpringRunner; - -/*@RunWith(SpringJUnit4ClassRunner.class) -@SpringBootTest -@ActiveProfiles("test")*/ -public class RoleMaster5ApplicationTests { - - @Test - public void contextLoads() { - } - -} diff --git a/src/test/java/com/iemr/inventory/provideronboard/test/Constants.java b/src/test/java/com/iemr/inventory/provideronboard/test/Constants.java deleted file mode 100644 index 2904e48..0000000 --- a/src/test/java/com/iemr/inventory/provideronboard/test/Constants.java +++ /dev/null @@ -1,31 +0,0 @@ -/* -* AMRIT – Accessible Medical Records via Integrated Technology -* Integrated EHR (Electronic Health Records) Solution -* -* Copyright (C) "Piramal Swasthya Management and Research Institute" -* -* This file is part of AMRIT. -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see https://www.gnu.org/licenses/. -*/ -package com.iemr.inventory.provideronboard.test; - -public interface Constants { - - static final String ServerIP = "localhost:8080"; - //static final String REQUESTOR_IP = "10.208.24.185"; - - - -} diff --git a/src/test/java/com/iemr/inventory/store/UserServiceTest.java b/src/test/java/com/iemr/inventory/store/UserServiceTest.java deleted file mode 100644 index 82d2ddd..0000000 --- a/src/test/java/com/iemr/inventory/store/UserServiceTest.java +++ /dev/null @@ -1,62 +0,0 @@ -/* -* AMRIT – Accessible Medical Records via Integrated Technology -* Integrated EHR (Electronic Health Records) Solution -* -* Copyright (C) "Piramal Swasthya Management and Research Institute" -* -* This file is part of AMRIT. -* -* This program is free software: you can redistribute it and/or modify -* it under the terms of the GNU General Public License as published by -* the Free Software Foundation, either version 3 of the License, or -* (at your option) any later version. -* -* This program is distributed in the hope that it will be useful, -* but WITHOUT ANY WARRANTY; without even the implied warranty of -* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -* GNU General Public License for more details. -* -* You should have received a copy of the GNU General Public License -* along with this program. If not, see https://www.gnu.org/licenses/. -*/ -package com.iemr.inventory.store; - -import static org.junit.Assert.assertEquals; - -import org.junit.After; -import org.junit.AfterClass; -import org.junit.Before; -import org.junit.BeforeClass; -import org.junit.Test; -import static org.junit.Assert.*; - -public class UserServiceTest { - - - @Before - public void before() { - System.out.println("Before"); - } - - @After - public void after() { - System.out.println("After"); - } - - @BeforeClass - public static void beforeClass() { - System.out.println("Before Class"); - } - - @AfterClass - public static void afterClass() { - System.out.println("After Class"); - } - - @Test - public void sum_with3numbers() { - System.out.println("Test1"); - assertEquals(6, 6); - } - -} \ No newline at end of file