當前位置: 首頁>>代碼示例>>Java>>正文


Java JUnit4TestAdapter類代碼示例

本文整理匯總了Java中junit.framework.JUnit4TestAdapter的典型用法代碼示例。如果您正苦於以下問題:Java JUnit4TestAdapter類的具體用法?Java JUnit4TestAdapter怎麽用?Java JUnit4TestAdapter使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


JUnit4TestAdapter類屬於junit.framework包,在下文中一共展示了JUnit4TestAdapter類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: tests57

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
static void tests57(TestSuite suite)
{
    suite.addTestSuite(org.alfresco.repo.tenant.MultiTNodeServiceInterceptorTest.class);
    suite.addTestSuite(org.alfresco.repo.template.XSLTProcessorTest.class); // Moved, was before MultiTDemoTest
    suite.addTestSuite(org.alfresco.repo.thumbnail.ThumbnailServiceImplTest.class);
    suite.addTestSuite(org.alfresco.repo.thumbnail.conditions.NodeEligibleForRethumbnailingEvaluatorTest.class);
    suite.addTestSuite(org.alfresco.repo.transaction.AlfrescoTransactionSupportTest.class);
    suite.addTestSuite(org.alfresco.repo.transaction.RetryingTransactionHelperTest.class);
    suite.addTestSuite(org.alfresco.repo.transaction.TransactionAwareSingletonTest.class);
    suite.addTestSuite(org.alfresco.repo.transaction.TransactionServiceImplTest.class);
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.transaction.ConnectionPoolOverloadTest.class));       
    suite.addTestSuite(org.alfresco.repo.transfer.NodeCrawlerTest.class);
    suite.addTestSuite(org.alfresco.repo.transfer.RepoTransferReceiverImplTest.class);
    suite.addTestSuite(org.alfresco.repo.transfer.TransferServiceCallbackTest.class);
    suite.addTestSuite(org.alfresco.repo.transfer.TransferServiceImplTest.class);
    suite.addTestSuite(org.alfresco.repo.transfer.TransferServiceToBeRefactoredTest.class);
    suite.addTestSuite(org.alfresco.repo.transfer.TransferVersionCheckerImplTest.class);
    suite.addTestSuite(org.alfresco.repo.transfer.manifest.ManifestIntegrationTest.class);
    suite.addTestSuite(org.alfresco.repo.transfer.script.ScriptTransferServiceTest.class);
    suite.addTestSuite(org.alfresco.repo.action.scheduled.CronScheduledQueryBasedTemplateActionDefinitionTest.class);
}
 
開發者ID:Alfresco,項目名稱:community-edition-old,代碼行數:22,代碼來源:Repository01TestSuite.java

示例2: tests63

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
static void tests63(TestSuite suite) // tests="187" time="364.334"
{
    suite.addTest(new JUnit4TestAdapter(org.alfresco.util.schemacomp.DbToXMLTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.util.schemacomp.ExportDbTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.util.schemacomp.SchemaReferenceFileTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.util.test.junitrules.AlfrescoPersonTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.util.test.junitrules.ApplicationContextInitTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.util.test.junitrules.TemporaryNodesTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.util.test.junitrules.TemporarySitesTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.util.CronTriggerBeanTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.util.CronTriggerBeanSystemTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.filesys.auth.cifs.CifsAuthenticatorKerberosTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.filesys.auth.cifs.CifsAuthenticatorPassthruTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.domain.schema.script.ScriptExecutorImplIntegrationTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.domain.schema.script.ScriptBundleExecutorImplIntegrationTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.search.impl.lucene.analysis.PathTokenFilterTest.class));
}
 
開發者ID:Alfresco,項目名稱:community-edition-old,代碼行數:18,代碼來源:Repository01TestSuite.java

示例3: addTests

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
@Override
public void addTests(TestSuite suite) {
	//$JUnit-BEGIN$
	suite.addTest(new JUnit4TestAdapter(TestJSConstraint.class));
	suite.addTest(new JUnit4TestAdapter(TestJSAnnotationConstraint.class));
	suite.addTestSuite(TestJavaScript.class);
	suite.addTestSuite(TestJSFormulaEngine.class);
	//$JUnit-END$
}
 
開發者ID:nasa,項目名稱:OpenSPIFe,代碼行數:10,代碼來源:AllTests.java

示例4: tests21

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
static void tests21(TestSuite suite)
{
    suite.addTestSuite(org.alfresco.repo.descriptor.DescriptorServiceTest.class);
    suite.addTestSuite(org.alfresco.repo.dictionary.DictionaryModelTypeTest.class);
    suite.addTestSuite(org.alfresco.repo.dictionary.DictionaryRepositoryBootstrapTest.class);
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.dictionary.CustomModelServiceImplTest.class));
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.dictionary.ValueDataTypeValidatorImplTest.class));
    suite.addTestSuite(org.alfresco.repo.dictionary.types.period.PeriodTest.class);
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.discussion.DiscussionServiceImplTest.class));
}
 
開發者ID:Alfresco,項目名稱:community-edition-old,代碼行數:11,代碼來源:Repository01TestSuite.java

示例5: tests29

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
static void tests29(TestSuite suite) // tests="12" time="93.965"
{
    suite.addTestSuite(org.alfresco.repo.jscript.PeopleTest.class); // fails if with previous tests
    suite.addTestSuite(org.alfresco.repo.jscript.RhinoScriptTest.class);
    suite.addTestSuite(org.alfresco.repo.jscript.ScriptBehaviourTest.class);
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.jscript.ScriptNodeTest.class));
}
 
開發者ID:Alfresco,項目名稱:community-edition-old,代碼行數:8,代碼來源:Repository01TestSuite.java

示例6: tests30

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
static void tests30(TestSuite suite) // tests="70" time="62.041" failures="1"
{
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.links.LinksServiceImplTest.class)); // fails if run more than once // fails if with previous tests
    suite.addTestSuite(org.alfresco.repo.lock.JobLockServiceTest.class);
    suite.addTestSuite(org.alfresco.repo.lock.LockBehaviourImplTest.class);
    suite.addTestSuite(org.alfresco.repo.lock.LockServiceImplTest.class);
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.lock.mem.LockStoreImplTxTest.class)); // failed on bamboo
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.lock.mem.LockableAspectInterceptorTest.class));
    suite.addTestSuite(org.alfresco.repo.management.JmxDumpUtilTest.class);
}
 
開發者ID:Alfresco,項目名稱:community-edition-old,代碼行數:11,代碼來源:Repository01TestSuite.java

示例7: tests35

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
static void tests35(TestSuite suite) // tests="86" time="553.462"
{
    suite.addTestSuite(org.alfresco.repo.node.archive.LargeArchiveAndRestoreTest.class);
    suite.addTest(new JUnit4TestAdapter(org.alfresco.repo.node.cleanup.TransactionCleanupTest.class));
    suite.addTestSuite(org.alfresco.repo.node.db.DbNodeServiceImplTest.class);
    suite.addTestSuite(org.alfresco.repo.node.db.DbNodeServiceImplPropagationTest.class);
}
 
開發者ID:Alfresco,項目名稱:community-edition-old,代碼行數:8,代碼來源:Repository01TestSuite.java

示例8: suite

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
/**
 * JUnit suite target
 */
public static junit.framework.Test suite() {
  return new JUnit4TestAdapter(JoinTest.class);
}
 
開發者ID:mitdbg,項目名稱:imputedb,代碼行數:7,代碼來源:JoinTest.java

示例9: suite

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
/**
 * JUnit suite target
 */
public static junit.framework.Test suite() {
    return new JUnit4TestAdapter(HeapFileReadTest.class);
}
 
開發者ID:mitdbg,項目名稱:imputedb,代碼行數:7,代碼來源:HeapFileReadTest.java

示例10: suite

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
/**
 * JUnit suite target
 */
public static junit.framework.Test suite() {
  return new JUnit4TestAdapter(AggregateTest.class);
}
 
開發者ID:mitdbg,項目名稱:imputedb,代碼行數:7,代碼來源:AggregateTest.java

示例11: suite

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
/**
 * JUnit suite target
 */
public static junit.framework.Test suite() {
  return new JUnit4TestAdapter(StringAggregatorTest.class);
}
 
開發者ID:mitdbg,項目名稱:imputedb,代碼行數:7,代碼來源:StringAggregatorTest.java

示例12: suite

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
/**
 * JUnit suite target
 */
public static junit.framework.Test suite() {
  return new JUnit4TestAdapter(JoinPredicateTest.class);
}
 
開發者ID:mitdbg,項目名稱:imputedb,代碼行數:7,代碼來源:JoinPredicateTest.java

示例13: suite

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
/**
 * JUnit suite target
 */
public static junit.framework.Test suite() {
  return new JUnit4TestAdapter(IntegerAggregatorTest.class);
}
 
開發者ID:mitdbg,項目名稱:imputedb,代碼行數:7,代碼來源:IntegerAggregatorTest.java

示例14: suite

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
/**
 * JUnit suite target
 */
public static junit.framework.Test suite() {
    return new JUnit4TestAdapter(HeapPageIdTest.class);
}
 
開發者ID:mitdbg,項目名稱:imputedb,代碼行數:7,代碼來源:HeapPageIdTest.java

示例15: suite

import junit.framework.JUnit4TestAdapter; //導入依賴的package包/類
/**
 * JUnit suite target
 */
public static junit.framework.Test suite() {
    return new JUnit4TestAdapter(HeapPageReadTest.class);
}
 
開發者ID:mitdbg,項目名稱:imputedb,代碼行數:7,代碼來源:HeapPageReadTest.java


注:本文中的junit.framework.JUnit4TestAdapter類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。