Skip to content

Commit

Permalink
Deprecated annotations have been removed from the examples
Browse files Browse the repository at this point in the history
  • Loading branch information
savkk committed Mar 15, 2024
1 parent b80f172 commit 3be0946
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To link tests with test-cases in Qase TMS you should use annotation `@io.qase.ap

```java
@Test
@CaseId(123)
@QaseId(123)
public void someTest(){
...
}
Expand Down
6 changes: 3 additions & 3 deletions qase-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ There are a few `Attachments.addAttachmentsToCurrentContext` use-cases down belo
##### Test case with attachments

```java
@CaseId(1)
@QaseId(1)
public void testCase() throws QaseException {
// your test case code here
Attachments.addAttachmentsToCurrentContext(
Expand All @@ -440,7 +440,7 @@ Afterward, the running test (of id 1) case will have the id of uploaded `caseScr
##### Test step with attachments

```java
@CaseId(2)
@QaseId(2)
public void testCase() throws QaseException {
// your test case code here
testStep();
Expand All @@ -464,7 +464,7 @@ In its turn, the step will have the id of uploaded `stepScreenshot.jpg` associat
##### Both a case and a step with attachments

```java
@CaseId(3)
@QaseId(3)
public void testCase() throws QaseException {
// your test case code here
Attachments.addAttachmentsToCurrentContext(
Expand Down

0 comments on commit 3be0946

Please sign in to comment.