-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add org.eclipse.tips.tests to Tycho build
* Make test bundle independent from org.eclipse.tips.examples by replicating the dummy resource used from the example project in the test project * Add test project as module to Maven build * Add a JUnit 5 test suite containing all tips tests * Add test suite to build.properties for pomless Tycho execution
- Loading branch information
1 parent
eafc8d5
commit a05b110
Showing
6 changed files
with
44 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
35 changes: 35 additions & 0 deletions
35
ua/org.eclipse.tips.tests/src/org/eclipse/tips/tests/AllTipsTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
/******************************************************************************* | ||
* Copyright (c) 2024 Vector Informatik GmbH and others. | ||
* | ||
* This program and the accompanying materials | ||
* are made available under the terms of the Eclipse Public License 2.0 | ||
* which accompanies this distribution, and is available at | ||
* https://www.eclipse.org/legal/epl-2.0/ | ||
* | ||
* SPDX-License-Identifier: EPL-2.0 | ||
*******************************************************************************/ | ||
package org.eclipse.tips.tests; | ||
|
||
import org.eclipse.tips.core.TipImageBas64Test; | ||
import org.eclipse.tips.core.TipImageURLTest; | ||
import org.eclipse.tips.core.TipManagerTest; | ||
import org.eclipse.tips.core.TipProviderTest; | ||
import org.eclipse.tips.core.TipTest; | ||
import org.eclipse.tips.json.internal.UtilTest; | ||
import org.eclipse.tips.util.ImageUtilTest; | ||
import org.junit.platform.suite.api.SelectClasses; | ||
import org.junit.platform.suite.api.Suite; | ||
|
||
@Suite | ||
@SelectClasses({ // | ||
TipImageBas64Test.class, // | ||
TipImageURLTest.class, // | ||
TipManagerTest.class, // | ||
TipProviderTest.class, // | ||
TipTest.class, // | ||
UtilTest.class, // | ||
ImageUtilTest.class, // | ||
}) | ||
public class AllTipsTests { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters