Skip to content

Commit

Permalink
docs: javadoc 주석 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
van1164 committed Jun 11, 2024
1 parent 9b851fe commit e3215e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/com/van1164/k6executor/K6Executor.java
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ public class K6Executor {
* <code>
* <br> check(res, {
* <br> 'is status 200': (r) => r.status === 200,
* <br> 'response time < 500ms': (r) => r.timings.duration < 50000,
* <br> 'response time {@literal <} 500ms': (r) => r.timings.duration {@literal <} 50000,
* <br> });
* </code>
* <br> you can configure the checklist as follows.
* <br> {@code String[] checkList = {"is status 200", "response time < 500ms"}; }
* <br> {@code String[] checkList = {"is status 200", "response time {@literal <} 500ms"}; }
*/

public K6Executor(String scriptPath, String[] checkList) {
Expand Down Expand Up @@ -148,7 +148,7 @@ private void untar(String filePath, String destDir) throws Exception {
}

/**
* K6 Executor Run test & Check for Check List
* K6 Executor Run test {@literal &} Check for Check List
*
* @return Returns true if all checklists are satisfied
*/
Expand Down

0 comments on commit e3215e6

Please sign in to comment.