Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove deprecated annotations from examples #133

Merged
merged 1 commit into from
Mar 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading