-
Notifications
You must be signed in to change notification settings - Fork 226
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- provided ability to handle package annotations
- add package target to Epic(s), Feature(s), Flaky, Issue(s), Link(s), Muted, Owner, Severity, Story(es), TmsLink(s)
- Loading branch information
1 parent
3d361dd
commit 70c5fd7
Showing
25 changed files
with
195 additions
and
22 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
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
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
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
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
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
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
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
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
15 changes: 15 additions & 0 deletions
15
allure-java-commons/src/test/java/io/qameta/allure/annotatedpack/MutedAndFlakyTest.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,15 @@ | ||
package io.qameta.allure.annotatedpack; | ||
|
||
import io.qameta.allure.Flaky; | ||
import io.qameta.allure.Muted; | ||
|
||
@Muted | ||
@Flaky | ||
public class MutedAndFlakyTest { | ||
|
||
@Muted | ||
@Flaky | ||
public void mutedAndFlakyMethod() { | ||
|
||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
allure-java-commons/src/test/java/io/qameta/allure/annotatedpack/NotMutedAndFlakyTest.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,8 @@ | ||
package io.qameta.allure.annotatedpack; | ||
|
||
public class NotMutedAndFlakyTest { | ||
|
||
public void notMutedAndFlakyMethod() { | ||
|
||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
.../test/java/io/qameta/allure/annotatedpack/muted/and/flaky/MutedAndFlakyByPackageTest.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,8 @@ | ||
package io.qameta.allure.annotatedpack.muted.and.flaky; | ||
|
||
public class MutedAndFlakyByPackageTest { | ||
|
||
public void notMutedAndFlakyMethod() { | ||
|
||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
...va-commons/src/test/java/io/qameta/allure/annotatedpack/muted/and/flaky/package-info.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,6 @@ | ||
@Muted | ||
@Flaky | ||
package io.qameta.allure.annotatedpack.muted.and.flaky; | ||
|
||
import io.qameta.allure.Flaky; | ||
import io.qameta.allure.Muted; |
6 changes: 6 additions & 0 deletions
6
allure-java-commons/src/test/java/io/qameta/allure/annotatedpack/package-info.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,6 @@ | ||
@Epic("High level epic") | ||
@Link("General link") | ||
package io.qameta.allure.annotatedpack; | ||
|
||
import io.qameta.allure.Epic; | ||
import io.qameta.allure.Link; |
7 changes: 7 additions & 0 deletions
7
...java-commons/src/test/java/io/qameta/allure/annotatedpack/subpack/innerpack/SomeTest.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,7 @@ | ||
package io.qameta.allure.annotatedpack.subpack.innerpack; | ||
|
||
import io.qameta.allure.Story; | ||
|
||
@Story("Marked pack story") | ||
public class SomeTest { | ||
} |
6 changes: 6 additions & 0 deletions
6
allure-java-commons/src/test/java/io/qameta/allure/annotatedpack/subpack/package-info.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,6 @@ | ||
@Feature("Some general feature") | ||
@Link("Some second level link") | ||
package io.qameta.allure.annotatedpack.subpack; | ||
|
||
import io.qameta.allure.Feature; | ||
import io.qameta.allure.Link; |
Oops, something went wrong.