Home | History | Annotate | Download | only in junit

Lines Matching defs:org

1 package org.junit;
10 * static, and a subtype of {@link org.junit.rules.TestRule}. A method must be public static, and return
11 * a subtype of {@link org.junit.rules.TestRule}.
13 * The {@link org.junit.runners.model.Statement} passed
14 * to the {@link org.junit.rules.TestRule} will run any {@link BeforeClass} methods,
17 * {@link org.junit.runners.Suite}), and finally any {@link AfterClass} methods.
19 * The statement passed to the {@link org.junit.rules.TestRule} will never throw an exception,
20 * and throwing an exception from the {@link org.junit.rules.TestRule} will result in undefined
21 * behavior. This means that some {@link org.junit.rules.TestRule}s, such as
22 * {@link org.junit.rules.ErrorCollector},
23 * {@link org.junit.rules.ExpectedException},
24 * and {@link org.junit.rules.Timeout},
80 * For more information and more examples, see {@link org.junit.rules.TestRule}.