We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c0eb89 commit 727be8fCopy full SHA for 727be8f
src/main/java/com/greghaskins/spectrum/Spectrum.java
@@ -9,6 +9,19 @@
9
import java.util.concurrent.ConcurrentHashMap;
10
import java.util.function.Supplier;
11
12
+/**
13
+ * Implements a BDD-style test runner, similar to RSpec and Jasmine. It uses JUnit's standard
14
+ * reporting mechanisms ({@link org.junit.runner.Description}), but provides a completely different
15
+ * way of writing tests. Annotate you class with {@code @RunWith(Spectrum.class)}, and use the
16
+ * static methods to declare your specs.
17
+ *
18
+ * @see #describe
19
+ * @see #it
20
+ * @see #beforeEach
21
+ * @see #afterEach
22
+ * @see #let
23
24
+ */
25
public final class Spectrum extends Runner {
26
27
/**
0 commit comments