org.kiwiproject.test.junit.jupiter.WhiteBoxTest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kiwi-test Show documentation
Show all versions of kiwi-test Show documentation
Kiwi Test is a test utility library.
package org.kiwiproject.test.junit.jupiter;
import org.junit.jupiter.api.Test;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* Indicator that a test is "white box", generally used to indicate a test is calling a non-public API.
* This is often useful when testing complex internal logic or exceptions that are difficult or near impossible
* to simulate.
*/
@Target({ElementType.ANNOTATION_TYPE, ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Test
public @interface WhiteBoxTest {
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy