]> WPIA git - gigi.git/blobdiff - tests/org/cacert/gigi/testUtils/OrgTest.java
upd: rename package name and all references to it
[gigi.git] / tests / org / cacert / gigi / testUtils / OrgTest.java
diff --git a/tests/org/cacert/gigi/testUtils/OrgTest.java b/tests/org/cacert/gigi/testUtils/OrgTest.java
deleted file mode 100644 (file)
index 5a42a4a..0000000
+++ /dev/null
@@ -1,24 +0,0 @@
-package org.cacert.gigi.testUtils;
-
-import java.io.IOException;
-
-import org.cacert.gigi.GigiApiException;
-import org.cacert.gigi.dbObjects.Country;
-import org.cacert.gigi.dbObjects.Country.CountryCodeType;
-import org.cacert.gigi.dbObjects.Group;
-import org.cacert.gigi.dbObjects.Organisation;
-
-public class OrgTest extends ClientTest {
-
-    public OrgTest() throws IOException, GigiApiException {
-        makeAssurer(u.getId());
-        u.grantGroup(getSupporter(), Group.ORGASSURER);
-        clearCaches();
-        cookie = login(email, TEST_PASSWORD);
-    }
-
-    public Organisation createUniqueOrg() throws GigiApiException {
-        Organisation o1 = new Organisation(createUniqueName(), Country.getCountryByCode("DE", CountryCodeType.CODE_2_CHARS), "pr", "city", "test@example.com", "", "", u);
-        return o1;
-    }
-}