Skip to content

Commit

Permalink
Reapply "refactor: JMeterSerialTest to Kotlin so we have one less com…
Browse files Browse the repository at this point in the history
…pileJava task"

This reverts commit 8a5f5d8.
  • Loading branch information
vlsi committed Dec 30, 2023
1 parent c204d5c commit b36a9c4
Showing 1 changed file with 5 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,16 @@
* limitations under the License.
*/

package org.apache.jorphan.test;
package org.apache.jorphan.test

import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
import org.junit.jupiter.api.parallel.Isolated;
import org.junit.jupiter.api.parallel.Execution
import org.junit.jupiter.api.parallel.ExecutionMode
import org.junit.jupiter.api.parallel.Isolated

/**
* Used to tag tests which need to be run on their own (in serial) because
* either, they cause other tests to fail, or they fail when run in parallel.
*/
@Isolated
@Execution(ExecutionMode.SAME_THREAD)
public interface JMeterSerialTest {
}
interface JMeterSerialTest

0 comments on commit b36a9c4

Please sign in to comment.