Search in sources :

Example 76 with AfterClass

use of org.testng.annotations.AfterClass in project shifu by ShifuML.

the class AbstractTrainerTest method delete.

@AfterClass
public void delete() throws IOException {
    File json = new File(".");
    File[] files = json.listFiles(filter);
    if (files != null) {
        for (File tmp : files) {
            FileUtils.deleteQuietly(tmp);
        }
    } else {
        throw new IOException(String.format("Failed to list files in %s", json.getAbsolutePath()));
    }
    FileUtils.deleteDirectory(new File("tmp"));
}
Also used : IOException(java.io.IOException) File(java.io.File) AfterClass(org.testng.annotations.AfterClass)

Example 77 with AfterClass

use of org.testng.annotations.AfterClass in project shifu by ShifuML.

the class LogisticRegressionTest method tearDown.

@AfterClass
public void tearDown() throws IOException {
    FileUtils.deleteDirectory(new File("./models/"));
    FileUtils.deleteDirectory(new File("./modelsTmp/"));
    FileUtils.deleteQuietly(new File("ModelConfig.json"));
    FileUtils.deleteDirectory(new File("test"));
}
Also used : File(java.io.File) AfterClass(org.testng.annotations.AfterClass)

Example 78 with AfterClass

use of org.testng.annotations.AfterClass in project shifu by ShifuML.

the class ScorerTest method delete.

@AfterClass
public void delete() throws IOException {
    FileUtils.deleteDirectory(new File("tmp"));
    FileUtils.deleteDirectory(new File("models"));
    FileUtils.deleteDirectory(new File("test-output"));
    FileUtils.deleteDirectory(new File(Constants.COLUMN_META_FOLDER_NAME));
}
Also used : File(java.io.File) AfterClass(org.testng.annotations.AfterClass)

Aggregations

AfterClass (org.testng.annotations.AfterClass)78 File (java.io.File)19 OrganizationConfigManager (com.sun.identity.sm.OrganizationConfigManager)9 HashSet (java.util.HashSet)9 AMIdentity (com.sun.identity.idm.AMIdentity)8 SSOToken (com.iplanet.sso.SSOToken)6 PrivilegeManager (com.sun.identity.entitlement.PrivilegeManager)6 MockParticipantManager (org.apache.helix.integration.manager.MockParticipantManager)6 AMIdentityRepository (com.sun.identity.idm.AMIdentityRepository)5 Date (java.util.Date)5 FutureCallback (com.linkedin.common.callback.FutureCallback)4 None (com.linkedin.common.util.None)4 Client (com.linkedin.r2.transport.common.Client)4 MockServer (com.sequenceiq.it.cloudbreak.v2.mock.MockServer)4 Path (org.apache.hadoop.fs.Path)4 PolicyPrivilegeManager (com.sun.identity.entitlement.opensso.PolicyPrivilegeManager)3 Configuration (org.apache.hadoop.conf.Configuration)3 FileSystem (org.apache.hadoop.fs.FileSystem)3 SSOException (com.iplanet.sso.SSOException)2 TransportClientFactory (com.linkedin.r2.transport.common.TransportClientFactory)2