File tree Expand file tree Collapse file tree
src/main/java/xdean/annotation/processor/toolkit/test Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616
1717/**
1818 * Framework to quick build compile test in junit.
19- *
19+ *
2020 * <ol>
2121 * <li>Compile period test. Use {@code @Compile} on your test method.
22- *
22+ *
2323 * <pre>
2424 * @Test
2525 * @Compile(sources = "/HelloWorld.java")
2626 * public void test(RoundEnvironment env) {
2727 * // Now you are in compile (Annotation Processor) context which is compiling your sources.
2828 * }
2929 * </pre>
30- *
30+ *
3131 * </li>
32- *
32+ *
3333 * <li>Compilation test. Use {@code @Compiled} on your test method.
34- *
34+ *
3535 * <pre>
3636 * @Test
3737 * @Compiled(sources = "/HelloWorld.java")
4040 * // Do assert on the Compilation.
4141 * }
4242 * </pre>
43- *
43+ *
4444 * </li>
45- * <ol>
46- *
45+ * </ ol>
46+ *
4747 * @author Dean Xu (XDean@github.com)
4848 */
4949package xdean .annotation .processor .toolkit .test ;
You can’t perform that action at this time.
0 commit comments