Skip to content

Commit

Permalink
Add RM annotations for better UX
Browse files Browse the repository at this point in the history
Signed-off-by: David Kornel <[email protected]>
  • Loading branch information
kornys committed Feb 29, 2024
1 parent 3ccd70c commit ad7cd69
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/*
* Copyright Skodjob authors.
* License: Apache License 2.0 (see the file LICENSE or http://apache.org/licenses/LICENSE-2.0.html).
*/
package io.skodjob.testframe.annotations;

import io.skodjob.testframe.listeners.TestVisualSeparatorExtension;
import org.junit.jupiter.api.extension.ExtendWith;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;

import static java.lang.annotation.RetentionPolicy.RUNTIME;

@Target(ElementType.TYPE)
@Retention(RUNTIME)
@ExtendWith(TestVisualSeparatorExtension.class)
public @interface TestVisualSeparator {
}

0 comments on commit ad7cd69

Please sign in to comment.