File tree Expand file tree Collapse file tree
com.avaloq.tools.ddk.check.core.test/src/com/avaloq/tools/ddk/check
com.avaloq.tools.ddk.check.test.runtime.tests/src/com/avaloq/tools/ddk/check/test/runtime/tests
com.avaloq.tools.ddk.check.ui.test/src/com/avaloq/tools/ddk/check/ui/test
com.avaloq.tools.ddk.test.ui.test/src/com/avaloq/tools/ddk/test/ui/test
com.avaloq.tools.ddk.xtext.generator.test/src/com/avaloq/tools/ddk/xtext/generator/test/generator
com.avaloq.tools.ddk.xtext.test/src/com/avaloq/tools/ddk/xtext/resource
com.avaloq.tools.ddk.xtext.ui.test/src/com/avaloq/tools/ddk/xtext/ui/test Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4242@ ExtendWith (InjectionExtension .class )
4343@ InjectWith (CheckInjectorProvider .class )
4444@ SuppressWarnings ("nls" )
45- class BugAig1314 {
45+ class BugAig1314Test {
4646
4747 /** Constructor of super class is protected... */
4848 private static class TestScope extends CatalogFromExtensionPointScope {
@@ -74,7 +74,7 @@ private ModelLocation createModelLocation(final URL url) {
7474 return new ModelLocation (url , TEST_CATALOG_FILE + TEST_CATALOG_EXTENSION ) {
7575 @ Override
7676 public InputStream getCatalogStream () {
77- return BugAig1314 .class .getResourceAsStream (TEST_CATALOG_FILE );
77+ return BugAig1314Test .class .getResourceAsStream (TEST_CATALOG_FILE );
7878 }
7979 };
8080 }
Original file line number Diff line number Diff line change 2727@ InjectWith (CheckInjectorProvider .class )
2828@ ExtendWith (InjectionExtension .class )
2929@ SuppressWarnings ("nls" )
30- class BugDsl27 extends AbstractCheckGenerationTestCase {
30+ class BugDsl27Test extends AbstractCheckGenerationTestCase {
3131
3232 /**
3333 * Tests that our test source compiles fine.
3434 */
3535 @ Test
3636 void testGeneratedCodeHasNoErrors () {
37- try (InputStream sourceStream = BugDsl27 .class .getResourceAsStream ("bugdsl27/BugDsl27" )) {
37+ try (InputStream sourceStream = BugDsl27Test .class .getResourceAsStream ("bugdsl27/BugDsl27" )) {
3838 generateAndCompile (sourceStream );
3939 } catch (IOException exception ) {
4040 LOGGER .info ("Failed to close the test file" );
Original file line number Diff line number Diff line change 1010 *******************************************************************************/
1111package com .avaloq .tools .ddk .check .test .core ;
1212
13+ import org .junit .platform .suite .api .IncludeClassNamePatterns ;
1314import org .junit .platform .suite .api .SelectPackages ;
1415import org .junit .platform .suite .api .Suite ;
1516
2223@ SelectPackages ({
2324 "com.avaloq.tools.ddk.check.core.test"
2425})
26+ @ IncludeClassNamePatterns (".*Test.*" )
2527class CheckCoreTestSuite {
2628
2729}
Original file line number Diff line number Diff line change 1010 *******************************************************************************/
1111package com .avaloq .tools .ddk .check .test .runtime .tests ;
1212
13+ import org .junit .platform .suite .api .IncludeClassNamePatterns ;
1314import org .junit .platform .suite .api .SelectPackages ;
1415import org .junit .platform .suite .api .Suite ;
1516
2223@ SelectPackages ({
2324 "com.avaloq.tools.ddk.check.test.runtime"
2425})
26+ @ IncludeClassNamePatterns (".*Test.*" )
2527class CheckExecutionEnvironmentTestSuite {
2628
2729}
Original file line number Diff line number Diff line change 1111
1212package com .avaloq .tools .ddk .check .test .runtime .tests ;
1313
14+ import org .junit .platform .suite .api .IncludeClassNamePatterns ;
1415import org .junit .platform .suite .api .SelectPackages ;
1516import org .junit .platform .suite .api .Suite ;
1617
2324@ SelectPackages ({
2425 "com.avaloq.tools.ddk.check.test.runtime.label"
2526})
27+ @ IncludeClassNamePatterns (".*Test.*" )
2628class CheckLibraryChecksTestSuite {
2729
2830}
Original file line number Diff line number Diff line change 1010 *******************************************************************************/
1111package com .avaloq .tools .ddk .check .ui .test ;
1212
13+ import org .junit .platform .suite .api .IncludeClassNamePatterns ;
1314import org .junit .platform .suite .api .SelectPackages ;
1415import org .junit .platform .suite .api .Suite ;
1516
2627 "com.avaloq.tools.ddk.check.ui.test.quickfix"
2728})
2829// @Format-On
30+ @ IncludeClassNamePatterns (".*Test.*" )
2931class CheckUiTestSuite {
3032}
Original file line number Diff line number Diff line change 1010 *******************************************************************************/
1111package com .avaloq .tools .ddk .test .ui .test ;
1212
13+ import org .junit .platform .suite .api .IncludeClassNamePatterns ;
1314import org .junit .platform .suite .api .SelectPackages ;
1415import org .junit .platform .suite .api .Suite ;
1516
2223@ SelectPackages ({
2324 "com.avaloq.tools.ddk.test.ui.test.swtbot"
2425})
26+ @ IncludeClassNamePatterns (".*Test.*" )
2527class AllTests {
2628}
Original file line number Diff line number Diff line change 1010 *******************************************************************************/
1111package com .avaloq .tools .ddk .xtext .generator .test .generator ;
1212
13+ import org .junit .platform .suite .api .IncludeClassNamePatterns ;
1314import org .junit .platform .suite .api .SelectPackages ;
1415import org .junit .platform .suite .api .Suite ;
1516
2021 */
2122@ Suite
2223@ SelectPackages ({
24+ "com.avaloq.tools.ddk.xtext.generator.expression" ,
2325 "com.avaloq.tools.ddk.xtext.generator.test.util"
2426})
25-
27+ @ IncludeClassNamePatterns ( ".*Test.*" )
2628class GeneratorTestSuite {
2729}
Original file line number Diff line number Diff line change 2424import com .google .common .collect .Lists ;
2525
2626
27- class BugAig1084 {
27+ class BugAig1084Test {
2828
2929 /**
3030 * Test that recursive calls to {@link ResourceDescription2#getLookUp()} by {@link ResourceDescription2#computeExportedObjects()} do not cause
Original file line number Diff line number Diff line change 1111
1212package com .avaloq .tools .ddk .xtext .ui .test ;
1313
14+ import org .junit .platform .suite .api .IncludeClassNamePatterns ;
1415import org .junit .platform .suite .api .SelectPackages ;
1516import org .junit .platform .suite .api .Suite ;
1617
2526 "com.avaloq.tools.ddk.xtext.ui.templates"
2627 // @Format-On
2728})
29+ @ IncludeClassNamePatterns (".*Test.*" )
2830class XtextUiTestSuite {
2931}
You can’t perform that action at this time.
0 commit comments