Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
org.eclipse.equinox.p2.tests.updatechecker.AllTests.class,
org.eclipse.equinox.p2.tests.updatesite.AllTests.class,
org.eclipse.equinox.p2.tests.reconciler.dropins.AllTests.class,
org.eclipse.equinox.p2.tests.sharedinstall.AllTests.class, org.eclipse.equinox.p2.tests.full.AllTests.class })
org.eclipse.equinox.p2.tests.sharedinstall.AllTests.class })
public class AutomatedTests {
// SuiteClasses
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008, 2016 IBM Corporation and others.
* Copyright (c) 2008, 2028 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -13,14 +13,14 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.mirror;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

/**
* Performs all automated mirror repository tests.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
@Suite
@SelectClasses({
ArtifactMirrorApplicationTest.class, MetadataMirrorApplicationTest.class, ArtifactRepositoryCleanupTest.class,
MetadataRepositoryCleanupTest.class, NewMirrorApplicationArtifactTest.class,
NewMirrorApplicationMetadataTest.class, MirrorApplicationTest.class
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2009 Cloudsmith Inc. and others.
* Copyright (c) 2009, 2026 Cloudsmith Inc. and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -13,14 +13,14 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.omniVersion;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

/**
* Tests the OmniVersion implementation of Version and VersionRange.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({ CommonPatternsTest.class, FormatArrayTest.class, FormatATest.class, FormatDTest.class,
@Suite
@SelectClasses({ CommonPatternsTest.class, FormatArrayTest.class, FormatATest.class, FormatDTest.class,
FormatNTest.class, FormatProcessingTest.class, FormatPTest.class, FormatQTest.class, FormatRTest.class,
FormatSTest.class, FormatTest.class, FormatRangeTest.class, MultiplicityTest.class, OSGiRangeTest.class,
OSGiVersionTest.class, RawRangeTest.class, RawRangeWithOriginalTest.class, RawVersionTest.class,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008, 2011 IBM Corporation and others.
* Copyright (c) 2008, 2026 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -13,14 +13,14 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.planner;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

/**
* Performs all automated planner tests.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({ AbsolutePlanTest.class, ActualChangeRequestTest.class, ActualChangeRequestTest2.class,
@Suite
@SelectClasses({ AbsolutePlanTest.class, ActualChangeRequestTest.class, ActualChangeRequestTest2.class,
AdditionalConstraints.class, AddIUProperty.class, AgentPlanTestInRunningInstance.class,
AgentPlanTestInExternalInstance.class, AgentPlanTestInExternalInstanceForCohostedMode.class, AllOptional.class,
AllOrbit.class, AllRequestFlexerTests.class, AnotherSingleton.class, Bug207319.class, Bug249605.class,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2007, 2010 IBM Corporation and others.
* Copyright (c) 2007, 2026 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -13,14 +13,14 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.ql;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

/**
* Performs all automated director tests.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({ EvaluatorTest.class, PerformanceTest.class, TestQueryReimplementation.class })
@Suite
@SelectClasses({ EvaluatorTest.class, PerformanceTest.class, TestQueryReimplementation.class })
public class AllTests {
// test suite
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2009, 2018 Cloudsmith Inc and others.
* Copyright (c) 2009, 2026 Cloudsmith Inc and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -13,14 +13,14 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.repository;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

/**
* Performs all automated repository bundle tests.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({ CacheManagerTest.class, RepositoryHelperTest.class, RepositoryExtensionPointTest.class,
@Suite
@SelectClasses({ CacheManagerTest.class, RepositoryHelperTest.class, RepositoryExtensionPointTest.class,
FileReaderTest2.class, ChecksumHelperTest.class })
public class AllTests {
// test suite
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2005, 2008 IBM Corporation and others.
* Copyright (c) 2005, 2026 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -13,11 +13,11 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.sat4j.smoke;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses({ SmokeTestSAT4J.class })
@Suite
@SelectClasses({ SmokeTestSAT4J.class })
public class AllTests {
// test suite
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008, 2013 Red Hat, Inc. and others.
* Copyright (c) 2008, 2026 Red Hat, Inc. and others.
*
* This
* program and the accompanying materials are made available under the terms of
Expand All @@ -13,34 +13,15 @@
******************************************************************************/
package org.eclipse.equinox.p2.tests.simpleconfigurator;

import junit.framework.Test;
import junit.framework.TestSuite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

@Suite
@SelectClasses({ SimpleConfiguratorTest.class, SimpleConfiguratorTestExtended.class,
SimpleConfiguratorTestExtendedConfigured.class, SimpleConfiguratorUtilsTest.class,
SimpleConfiguratorUtilsExtendedTest.class, SimpleConfiguratorUtilsExtendedConfiguredTest.class,
BundlesTxtTest.class, BundlesTxtTestExtended.class, BundlesTxtTestExtendedConfigured.class,
NonExclusiveMode.class, NonExclusiveModeExtended.class, NonExclusiveModeExtendedConfigured.class })
public class SimpleConfiguratorTests {

public static Test suite() {
TestSuite suite = new TestSuite("Tests for org.eclipse.equinox.simpleconfigurator");

//$JUnit-BEGIN$

suite.addTestSuite(SimpleConfiguratorTest.class);
suite.addTestSuite(SimpleConfiguratorTestExtended.class);
suite.addTestSuite(SimpleConfiguratorTestExtendedConfigured.class);

suite.addTestSuite(SimpleConfiguratorUtilsTest.class);
suite.addTestSuite(SimpleConfiguratorUtilsExtendedTest.class);
suite.addTestSuite(SimpleConfiguratorUtilsExtendedConfiguredTest.class);

suite.addTestSuite(BundlesTxtTest.class);
suite.addTestSuite(BundlesTxtTestExtended.class);
suite.addTestSuite(BundlesTxtTestExtendedConfigured.class);

suite.addTestSuite(NonExclusiveMode.class);
suite.addTestSuite(NonExclusiveModeExtended.class);
suite.addTestSuite(NonExclusiveModeExtendedConfigured.class);

//$JUnit-END$
return suite;
}

}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation and others.
* Copyright (c) 2008, 2026 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -13,14 +13,14 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.simpleconfigurator.manipulator;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

/**
* Performs all automated director tests.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({ SimpleConfiguratorManipulatorUtilsTest.class, SimpleConfiguratorManipulatorTests.class })
@Suite
@SelectClasses({ SimpleConfiguratorManipulatorUtilsTest.class, SimpleConfiguratorManipulatorTests.class })
public class AllTests {
// test suite
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008, 2011 IBM Corporation and others.
* Copyright (c) 2008, 2026 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -13,14 +13,14 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.touchpoint.eclipse;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

/**
* Performs all automated touchpoint tests.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
@Suite
@SelectClasses({
EclipseTouchpointTest.class, AddJVMArgumentActionTest.class, AddProgramArgumentActionTest.class,
AddProgramPropertyActionTest.class, AddRepositoryActionTest.class, AddSourceBundleActionTest.class,
CheckTrustActionTest.class, ChmodActionTest.class, CollectActionTest.class, InstallBundleActionTest.class,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008, 2009 IBM Corporation and others.
* Copyright (c) 2008, 2026 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -13,14 +13,14 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.touchpoint.natives;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

/**
* Performs all automated director tests.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({
@Suite
@SelectClasses({
ChmodActionTest.class, CleanupzipActionTest.class, CollectActionTest.class, LinkActionTest.class,
MkdirActionTest.class, NativeTouchpointTest.class, RmdirActionTest.class, UnzipActionTest.class,
CopyActionTest.class, RemoveActionTest.class, SimpleBackupStoreTest.class,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008 IBM Corporation and others.
* Copyright (c) 2008, 2026 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -13,14 +13,14 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.updatechecker;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

/**
* All automated tests for the org.eclipse.equinox.p2.updatechecker bundle
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({ UpdateCheckerTest.class })
@Suite
@SelectClasses({ UpdateCheckerTest.class })
public class AllTests {
// test suite
}
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*******************************************************************************
* Copyright (c) 2008, 2010 IBM Corporation and others.
* Copyright (c) 2008, 2026 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
Expand All @@ -13,14 +13,14 @@
*******************************************************************************/
package org.eclipse.equinox.p2.tests.updatesite;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.platform.suite.api.SelectClasses;
import org.junit.platform.suite.api.Suite;

/**
* Performs all automated director tests.
*/
@RunWith(Suite.class)
@Suite.SuiteClasses({ CategoryXMLActionTest.class, CategoryIUXMLActionTest.class, DoesNotCacheStaleData.class,
@Suite
@SelectClasses({ CategoryXMLActionTest.class, CategoryIUXMLActionTest.class, DoesNotCacheStaleData.class,
SiteXMLActionTest.class, UpdateSiteTest.class, LocalUpdatesiteTest.class, })
public class AllTests {
//test suite
Expand Down
Loading