Skip to content

Commit 593a5e8

Browse files
Merge pull request #42 from aquality-automation/feature/junit5
Feature/junit5
2 parents 9671254 + 2d64a3a commit 593a5e8

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Features:
66
- Milestone View: Add functionality that displays the latest results of the tests from the test runs -> [View Issue](https://github.com/aquality-automation/aquality-tracking/issues/11)
77
- List of predefined Resolutions -> [View Issue](https://github.com/aquality-automation/aquality-tracking/issues/26)
88
- Import: Mark import as debug -> [View Issue](https://github.com/aquality-automation/aquality-tracking/issues/47)
9+
- Add JUnit 5 support -> [View Issue](https://github.com/aquality-automation/aquality-tracking/issues/33)
910

1011
Bugfixes:
1112
- Add ALLOW_UNQUOTED_CONTROL_CHARS for mapper -> [View Issue](https://github.com/aquality-automation/aquality-tracking/issues/45)

src/main/java/main/model/db/imports/HandlerFactory.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ Handler getHandler(File file, String type, TestNameNodeType testNameNodeType) th
1515
return new TRX(file, testNameNodeType);
1616
case Robot:
1717
return new Robot(file);
18+
case JUnit:
1819
case TestNG:
1920
if(testNameNodeType == null){
2021
throw new AqualityException("testNameNode is required");

src/main/java/main/model/db/imports/ImportTypes.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ public enum ImportTypes {
44
MSTest,
55
Robot,
66
TestNG,
7+
JUnit,
78
Cucumber,
89
TestNGCucumber,
910
PHPCodeception,

0 commit comments

Comments
 (0)