Skip to content

Commit

Permalink
Create test suite to order the tests execution
Browse files Browse the repository at this point in the history
  • Loading branch information
emildinchev committed Aug 31, 2023
1 parent fd8c081 commit f8c1466
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package org.eclipse.digitaltwin.aas4j.v3.dataformat.xml;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses(
{
XmlValidationTest.class,
XMLDeserializerTest.class,
XmlSerializerTest.class,
}
)
public class TestSuite {
}

0 comments on commit f8c1466

Please sign in to comment.