Skip to content

Commit

Permalink
Correct the javadoc references to @OperateOnDeployment (#589)
Browse files Browse the repository at this point in the history
Fixes #64

Signed-off-by: Scott M Stark <[email protected]>
  • Loading branch information
starksm64 authored Jul 9, 2024
1 parent 92b9fdd commit 5f70ee0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@
* .addClass(MyServletY.class);
* }
*
* &#64;Test &#64;OperatesOnDeployment("X")
* &#64;Test &#64;OperateOnDeployment("X")
* public void shouldExecuteInX() { ... }
*
* &#64;Test &#64;OperatesOnDeployment("Y")
* &#64;Test &#64;OperateOnDeployment("Y")
* public void shouldExecuteInY() { ... }
* </code></pre>
* <p>
Expand All @@ -70,10 +70,10 @@
* .addClass(MyServletY.class);
* }
*
* &#64;Test &#64;OperatesOnDeployment("X")
* &#64;Test &#64;OperateOnDeployment("X")
* public void shouldExecuteInX() { ... }
*
* &#64;Test &#64;OperatesOnDeployment("Y") &#64;RunAsClient
* &#64;Test &#64;OperateOnDeployment("Y") &#64;RunAsClient
* public void shouldExecuteInY(&#64;ArquillianResource &#64;OperateOnDeployment("X") URL deploymentXURLContext) { ... }
* </code></pre>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ private void createContext(EventContext<? extends TestEvent> context) {
}

/*
* Internal Helpers needed to extract @OperatesOnDeployment from TestMethod.
* Internal Helpers needed to extract @OperateOnDeployment from TestMethod.
*
* TODO: This should not rely on direct Reflection, but rather access the metadata through some
* common metadata layer.
Expand Down

0 comments on commit 5f70ee0

Please sign in to comment.