Java Code Examples for org.testng.annotations.AfterClass
The following are top voted examples for showing how to use
org.testng.annotations.AfterClass. These examples are extracted from open source projects.
You can vote up the examples you like and your votes will be used in our system to generate
more good examples.
Example 1
Project: aws-photosharing-example File: TokenFacadeTest.java View source code | 6 votes |
@AfterClass public void cleanUp() { Query query = _em.createQuery("select t from Token t where t.userName='testToken'"); testToken = (Token)query.getSingleResult(); query = _em.createQuery("select t from Token t where t.userName='" + USER_NAME + "'"); token = (Token)query.getSingleResult(); _em.getTransaction().begin(); _em.remove(token); _em.remove(testToken); _em.getTransaction().commit(); query = _em.createQuery("select t from Token t where t.id='" + valToken.getId() + "'"); valToken = (Token)query.getSingleResult(); _em.getTransaction().begin(); _em.remove(valToken); _em.getTransaction().commit(); }
Example 2
Project: jfrog-idea-plugin File: NpmScanManagerTests.java View source code | 6 votes |
@AfterClass public void cleanProject() { try { Path installationDirectory = Paths.get(getProjectBasePath(project), ".idea"); if (Files.exists(installationDirectory)) { FileUtils.forceDelete(installationDirectory.toFile()); } } catch (IOException e) { // Ignore } }
Example 3
Project: openjdk-jdk10 File: TestVersionedStream.java View source code | 6 votes |
@AfterClass public void close() throws IOException { Files.walk(userdir, 1) .filter(p -> !p.equals(userdir)) .forEach(p -> { try { if (Files.isDirectory(p)) { FileUtils.deleteFileTreeWithRetry(p); } else { FileUtils.deleteFileIfExistsWithRetry(p); } } catch (IOException x) { throw new UncheckedIOException(x); } }); }
Example 4
Project: reactive-grpc File: RxGrpcPublisherOneToManyVerificationTest.java View source code | 5 votes |
@AfterClass public static void tearDown() throws Exception { server.shutdown(); server.awaitTermination(); channel.shutdown(); server = null; channel = null; }
Example 5
Project: reactive-grpc File: RxGrpcPublisherManyToOneVerificationTest.java View source code | 5 votes |
@AfterClass public static void tearDown() throws Exception { server.shutdown(); server.awaitTermination(); channel.shutdown(); server = null; channel = null; }
Example 6
Project: reactive-grpc File: RxGrpcPublisherOneToOneVerificationTest.java View source code | 5 votes |
@AfterClass public static void tearDown() throws Exception { server.shutdown(); server.awaitTermination(); channel.shutdown(); server = null; channel = null; }
Example 7
Project: reactive-grpc File: RxGrpcPublisherManyToManyVerificationTest.java View source code | 5 votes |
@AfterClass public static void tearDown() throws Exception { server.shutdown(); server.awaitTermination(); channel.shutdown(); server = null; channel = null; }
Example 8
Project: reactive-grpc File: ReactorGrpcPublisherManyToOneVerificationTest.java View source code | 5 votes |
@AfterClass public static void tearDown() throws Exception { server.shutdown(); server.awaitTermination(); channel.shutdown(); server = null; channel = null; }
Example 9
Project: reactive-grpc File: ReactorGrpcPublisherOneToOneVerificationTest.java View source code | 5 votes |
@AfterClass public static void tearDown() throws Exception { server.shutdown(); server.awaitTermination(); channel.shutdown(); server = null; channel = null; }
Example 10
Project: openjdk-jdk10 File: ExternalEditorTest.java View source code | 5 votes |
@AfterClass public static void shutdown() throws IOException { executorShutdown(); if (listener != null) { listener.close(); } }
Example 11
Project: openjdk-jdk10 File: RowSetProviderTests.java View source code | 5 votes |
@AfterClass public static void tearDownClass() throws Exception { if (origFactoryProperty != null) { System.setProperty("javax.sql.rowset.RowSetFactory", origFactoryProperty); } }
Example 12
Project: openjdk-jdk10 File: MultiReleaseJarHttpProperties.java View source code | 5 votes |
@AfterClass public void close() throws IOException { // Windows requires server to stop before file is deleted if (server != null) server.stop(); super.close(); }
Example 13
Project: martini-core File: DefaultMixologyTest.java View source code | 5 votes |
@AfterClass public void tearDownClass() { factory = null; if (null != context) { context.close(); } context = null; }
Example 14
Project: jdk8u-jdk File: LogGeneratedClassesTest.java View source code | 5 votes |
@AfterClass public void cleanup() throws IOException { Files.delete(Paths.get("TestLambda.java")); Files.delete(Paths.get("LongPackageName.java")); Files.delete(Paths.get("file")); TestUtil.removeAll(Paths.get("com")); TestUtil.removeAll(Paths.get("dump")); TestUtil.removeAll(Paths.get("dumpLong")); }
Example 15
Project: morpheus-core File: DbTests.java View source code | 5 votes |
@AfterClass public void dispose() { for (String key : dataSourceMap.keySet()) { try { final DataSource source = dataSourceMap.get(key); try (final Connection conn = source.getConnection()) { final Statement stmt = conn.createStatement(); stmt.execute("shutdown"); } } catch (Throwable t) { System.out.println("Failed to dispose connection for " + key); } } }
Example 16
Project: jdk8u-jdk File: RowSetProviderTests.java View source code | 5 votes |
@AfterClass public static void tearDownClass() throws Exception { if (origFactoryProperty != null) { System.setProperty("javax.sql.rowset.RowSetFactory", origFactoryProperty); } }
Example 17
Project: dhus-core File: HierarchicalDirectoryBuilderTest.java View source code | 5 votes |
@AfterClass public void finalize_me() { logger.info ("Removing tmp files."); FileUtils.deleteQuietly (tmp); }
Example 18
Project: karate File: KarateRunner.java View source code | 5 votes |
@AfterClass(alwaysRun = true) public void tearDownClass() throws Exception { RuntimeOptions ro = runtimeOptions.getRuntimeOptions(); Formatter formatter = ro.formatter(runtimeOptions.getClassLoader()); formatter.done(); formatter.close(); }
Example 19
Project: keti File: PolicyManagementServiceTest.java View source code | 5 votes |
@AfterClass public void afterClass() { this.zoneRepository.delete(this.defaultZone); this.zoneRepository.delete(this.zone1); this.zoneRepository.delete(this.zone2); }
Example 20
Project: strongbox File: DefaultSecretsGroupManagerIntegrationTest.java View source code | 5 votes |
@AfterClass public static void after() { tearDownSecrets(); detachAdmin(secretsGroupManager, adminContext.principal); detachReadonly(secretsGroupManager, readOnlyContext.principal); IntegrationTestHelper.cleanupGroup(secretsGroupManager, identifier); readOnlyContext.teardown(); adminContext.teardown(); otherContext.teardown(); // Also cleanup anything left over from a previous test run that was not deleted properly. IntegrationTestHelper.cleanUpFromPreviousRuns(Regions.fromName(TEST_REGION.getName()), GROUP_PREFIX); }
Example 21
Project: Equella File: AbstractTest.java View source code | 5 votes |
@AfterClass(alwaysRun = true) public void finishedClass(ITestContext testContext) throws Exception { if( context == null ) { return; } String delValue = testConfig.getProperty("test.deleteitems"); if( delValue == null || Boolean.parseBoolean(delValue) ) { cleanupAfterClass(); } }
Example 22
Project: hbase-client File: BatchIt.java View source code | 5 votes |
/** * Tear down test * @throws Exception */ @AfterClass public void tearDown() throws Exception { System.out.println("Close HBase test table"); admin.disableTable(tableName); admin.deleteTable(tableName); testTable.close(); }
Example 23
Project: openjdk-jdk10 File: LogGeneratedClassesTest.java View source code | 5 votes |
@AfterClass public void cleanup() throws IOException { Files.delete(Paths.get("TestLambda.java")); Files.delete(Paths.get("LongPackageName.java")); Files.delete(Paths.get("file")); TestUtil.removeAll(Paths.get("com")); TestUtil.removeAll(Paths.get("dump")); TestUtil.removeAll(Paths.get("dumpLong")); }
Example 24
Project: otter-G File: BaseStageTest.java View source code | 5 votes |
@AfterClass public void destory() { ArbitrateFactory.destory(pipelineId); // 删除mainStem节点 String path = pipelinePath + "/" + ArbitrateConstants.NODE_MAINSTEM; zookeeper.delete(path); pipelineEvent.destory(channelId, pipelineId); channelEvent.destory(channelId); }
Example 25
Project: aws-photosharing-example File: AlbumFacadeTest.java View source code | 5 votes |
@AfterClass public void cleanUp() throws Exception { // Delete User _em.getTransaction().begin(); _em.remove(testUser); _em.flush(); _em.getTransaction().commit(); _em.close(); }
Example 26
Project: ExtendNG File: OrderByGroupsSpecialCasesTest.java View source code | 5 votes |
@AfterClass public void actualTest(ITestContext result){ long testsRunInClass = Stream.of(result.getAllTestMethods()) .filter(iTestNGMethod -> iTestNGMethod.getTestClass().getRealClass().equals(OrderByGroupsSpecialCasesTest.class)) .count(); Assert.assertEquals(testsRunInClass, 2L, "intended tests were'nt run"); }
Example 27
Project: kerberos-connector File: KerberosConnectorTests.java View source code | 5 votes |
@AfterClass public void tearDown() { // // clean up resources // if (connectorFacade instanceof LocalConnectorFacadeImpl) { ((LocalConnectorFacadeImpl) connectorFacade).dispose(); } }
Example 28
Project: kerberos-connector File: KerberosConnectorBadPasswordTests.java View source code | 5 votes |
@AfterClass public void tearDown() { // // clean up resources // if (connectorFacade instanceof LocalConnectorFacadeImpl) { ((LocalConnectorFacadeImpl) connectorFacade).dispose(); } }
Example 29
Project: keti File: AccessControlServiceIT.java View source code | 5 votes |
@AfterClass public void cleanup() throws Exception { this.privilegeHelper.deleteResources(this.acsitSetUpFactory.getAcsZoneAdminRestTemplate(), this.acsitSetUpFactory.getAcsUrl(), this.acsitSetUpFactory.getZone1Headers()); this.privilegeHelper.deleteSubjects(this.acsitSetUpFactory.getAcsZoneAdminRestTemplate(), this.acsitSetUpFactory.getAcsUrl(), this.acsitSetUpFactory.getZone1Headers()); this.policyHelper.deletePolicySets(this.acsitSetUpFactory.getAcsZoneAdminRestTemplate(), this.acsitSetUpFactory.getAcsUrl(), this.acsitSetUpFactory.getZone1Headers()); this.acsitSetUpFactory.destroy(); }
Example 30
Project: Reer File: Test2.java View source code | 4 votes |
@AfterClass public void afterClass() { System.out.println("Test2.afterClass()"); }
Example 31
Project: Reer File: Test1.java View source code | 4 votes |
@AfterClass public void afterClass() { System.out.println("Test1.afterClass()"); }
Example 32
Project: Reer File: TestFactory.java View source code | 4 votes |
@AfterClass public void afterClass() { System.out.println("TestFactory[" + data + "].afterClass()"); }
Example 33
Project: shibboleth-idp-oidc-extension File: ReloadClientResolverServiceConfigurationTest.java View source code | 4 votes |
@AfterClass public void teardown() { ComponentSupport.destroy(service); }
Example 34
Project: shibboleth-idp-oidc-extension File: ReloadProviderResolverServiceConfigurationTest.java View source code | 4 votes |
@AfterClass public void teardown() { ComponentSupport.destroy(service); }
Example 35
Project: incubator-netbeans File: PassSkipTest.java View source code | 4 votes |
@AfterClass public void cleanUp() { // code that will be invoked after this test ends }
Example 36
Project: gold File: OrderByTest.java View source code | 4 votes |
@AfterClass private void clearMemory() { inMemorySchemaRepository.clearForInstanceTesting(); inMemorySchemaRepository.clearForSchemaTesting(); }
Example 37
Project: incubator-netbeans File: NewTestNGTest.java View source code | 4 votes |
@AfterClass public void cleanUp() { }
Example 38
Project: incubator-netbeans File: CleanUpTest.java View source code | 4 votes |
@AfterClass public void cleanUp() { assert false : "some message"; }
Example 39
Project: openjdk-jdk10 File: MethodAccessTest.java View source code | 4 votes |
@AfterClass public static void tearDownClass() { e = null; o = null; }
Example 40
Project: openjdk-jdk10 File: DriverManagerTests.java View source code | 4 votes |
@AfterClass public static void tearDownClass() throws Exception { }