OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:junit
(Results
1 - 25
of
1643
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/junit/src/junit/extensions/
package-info.java
2
* Provides extended functionality for
JUnit
v3.x.
4
package
junit
.extensions
/external/junit/src/junit/framework/
package-info.java
2
* Provides
JUnit
v3.x core classes.
4
package
junit
.framework
Protectable.java
1
package
junit
.framework;
/external/junit/src/junit/runner/
package-info.java
2
* Provides
JUnit
v3.x test runners.
4
package
junit
.runner
/external/junit/src/junit/textui/
package-info.java
2
* Provides
JUnit
v3.x command line based tool to run tests.
4
package
junit
.textui
/external/junit/src/org/junit/
package-info.java
2
* Provides
JUnit
core classes and annotations.
4
* Corresponds to
junit
.framework in
Junit
3.x.
8
package org.
junit
After.java
1
package org.
junit
;
9
* <p>If you allocate external resources in a {@link org.
junit
.Before} method you need to release them
11
* with <code>@After</code> causes that method to be run after the {@link org.
junit
.Test} method. All <code>@After</code>
12
* methods are guaranteed to run even if a {@link org.
junit
.Before} or {@link org.
junit
.Test} method throws an
32
* @see org.
junit
.Before
33
* @see org.
junit
.Test
AfterClass.java
1
package org.
junit
;
9
* <p>If you allocate expensive external resources in a {@link org.
junit
.BeforeClass} method you need to release them
12
* methods are guaranteed to run even if a {@link org.
junit
.BeforeClass} method throws an
35
* @see org.
junit
.BeforeClass
36
* @see org.
junit
.Test
Before.java
1
package org.
junit
;
11
* with <code>@Before</code> causes that method to be run before the {@link org.
junit
.Test} method.
32
* @see org.
junit
.BeforeClass
33
* @see org.
junit
.After
BeforeClass.java
1
package org.
junit
;
30
* @see org.
junit
.AfterClass
ClassRule.java
1
package org.
junit
;
10
* static, and a subtype of {@link org.
junit
.rules.TestRule}.
11
* The {@link org.
junit
.runners.model.Statement} passed
12
* to the {@link org.
junit
.rules.TestRule} will run any {@link BeforeClass} methods,
14
* a standard
JUnit
test class, or all contained classes, if it is a
15
* {@link org.
junit
.runners.Suite}), and finally any {@link AfterClass} methods.
17
* The statement passed to the {@link org.
junit
.rules.TestRule} will never throw an exception,
18
* and throwing an exception from the {@link org.
junit
.rules.TestRule} will result in undefined
19
* behavior. This means that some {@link org.
junit
.rules.TestRule}s, such as
20
* {@link org.
junit
.rules.ErrorCollector},
[
all
...]
Ignore.java
1
package org.
junit
;
10
* {@link org.
junit
.Test} that are also annotated with <code>@Ignore</code> will not be executed as tests.
12
* tests will be executed. Native
JUnit
4 test runners should report the number of ignored tests along with the
Rule.java
1
package org.
junit
;
10
* static, and a subtype of {@link org.
junit
.rules.TestRule}.
11
* The {@link org.
junit
.runners.model.Statement} passed
12
* to the {@link org.
junit
.rules.TestRule} will run any {@link Before} methods,
37
* {@link org.
junit
.rules.TestRule}.
40
* fields of type {@link org.
junit
.rules.MethodRule}, which will be honored. However,
/external/icu/android_icu4j/runner/src/main/java/android/icu/junit/
package-info.java
2
* Contains classes used to make ICU tests runnable by
JUnit
.
5
* simply run using standard
JUnit
. e.g. ICU test classes will be annotated with
10
package android.icu.
junit
;
/external/junit/src/org/junit/internal/requests/
package-info.java
2
* Provides implementations of {@link org.
junit
.runner.Request}.
7
package org.
junit
.internal.requests;
/external/junit/src/org/junit/internal/runners/
package-info.java
2
* Provides implementations of {@link org.
junit
.runner.Runner}
7
package org.
junit
.internal.runners;
/external/junit/src/org/junit/matchers/
package-info.java
3
* the {@link org.
junit
.Assert#assertThat(Object, org.hamcrest.Matcher)}
7
* @see org.
junit
.matchers.JUnitMatchers
9
package org.
junit
.matchers
/external/junit/src/org/junit/runner/manipulation/
package-info.java
2
* Provides classes to {@link org.
junit
.runner.manipulation.Filter filter} or {@link org.
junit
.runner.manipulation.Sorter sort} tests.
5
* @see org.
junit
.runner.Runner
7
package org.
junit
.runner.manipulation
/external/junit/src/org/junit/runner/notification/
package-info.java
6
package org.
junit
.runner.notification
/external/junit/src/org/junit/runner/
package-info.java
6
package org.
junit
.runner
/external/junit/src/org/junit/runners/
AllTests.java
1
package org.
junit
.runners;
3
import org.
junit
.internal.runners.SuiteMethod;
5
/** Runner for use with
JUnit
3.8.x-style AllTests classes
11
* public static
junit
.framework.Test suite() {
JUnit4.java
1
package org.
junit
.runners;
3
import org.
junit
.runners.model.InitializationError;
6
* Aliases the current default
JUnit
4 class runner, for future-proofing. If
7
* future versions of
JUnit
change the default Runner class, they will also
9
* class as a
JUnit
4 class should use {@code @RunWith(JUnit4.class)}, not,
10
* for example in
JUnit
4.5, {@code @RunWith(BlockJUnit4ClassRunner.class)}.
package-info.java
2
* Provides standard {@link org.
junit
.runner.Runner Runner} implementations.
5
* @see org.
junit
.runner.Runner
6
* @see org.
junit
.runners.BlockJUnit4ClassRunner
8
package org.
junit
.runners
/external/testng/src/test/java/test/junit/
Suite1.java
1
package test.
junit
;
3
import
junit
.framework.Test;
4
import
junit
.framework.TestSuite;
Suite4.java
1
package test.
junit
;
3
import
junit
.framework.Test;
4
import
junit
.framework.TestSuite;
Completed in 6986 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>