Skip navigation links
A C F G J O S 

A

Assert - Class in org.j8unit
In addition to the JUnit's Assert this extension provides Supplier-based assertion methods.
Assert() - Constructor for class org.j8unit.Assert
 
assertArrayEquals(CharSequence, Object[], Object[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(CharSequence, boolean[], boolean[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(CharSequence, byte[], byte[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(CharSequence, char[], char[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(CharSequence, short[], short[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(CharSequence, int[], int[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(CharSequence, long[], long[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(CharSequence, double[], double[], double) - Static method in class org.j8unit.Assert
 
assertArrayEquals(CharSequence, float[], float[], float) - Static method in class org.j8unit.Assert
 
assertArrayEquals(Supplier<String>, Object[], Object[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(Supplier<String>, boolean[], boolean[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(Supplier<String>, byte[], byte[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(Supplier<String>, char[], char[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(Supplier<String>, short[], short[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(Supplier<String>, int[], int[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(Supplier<String>, long[], long[]) - Static method in class org.j8unit.Assert
 
assertArrayEquals(Supplier<String>, double[], double[], double) - Static method in class org.j8unit.Assert
 
assertArrayEquals(Supplier<String>, float[], float[], float) - Static method in class org.j8unit.Assert
 
assertEquals(CharSequence, Object, Object) - Static method in class org.j8unit.Assert
 
assertEquals(CharSequence, double, double, double) - Static method in class org.j8unit.Assert
 
assertEquals(CharSequence, float, float, float) - Static method in class org.j8unit.Assert
 
assertEquals(CharSequence, long, long) - Static method in class org.j8unit.Assert
 
assertEquals(CharSequence, double, double) - Static method in class org.j8unit.Assert
Deprecated.
assertEquals(CharSequence, Object[], Object[]) - Static method in class org.j8unit.Assert
Deprecated.
assertEquals(Supplier<String>, Object, Object) - Static method in class org.j8unit.Assert
 
assertEquals(Supplier<String>, double, double, double) - Static method in class org.j8unit.Assert
 
assertEquals(Supplier<String>, float, float, float) - Static method in class org.j8unit.Assert
 
assertEquals(Supplier<String>, long, long) - Static method in class org.j8unit.Assert
 
assertEquals(Supplier<String>, double, double) - Static method in class org.j8unit.Assert
Deprecated.
assertEquals(Supplier<String>, Object[], Object[]) - Static method in class org.j8unit.Assert
Deprecated.
assertFalse(CharSequence, boolean) - Static method in class org.j8unit.Assert
 
assertFalse(Supplier<String>, boolean) - Static method in class org.j8unit.Assert
 
assertNotEquals(CharSequence, Object, Object) - Static method in class org.j8unit.Assert
 
assertNotEquals(CharSequence, long, long) - Static method in class org.j8unit.Assert
 
assertNotEquals(CharSequence, double, double, double) - Static method in class org.j8unit.Assert
 
assertNotEquals(CharSequence, float, float, float) - Static method in class org.j8unit.Assert
 
assertNotEquals(Supplier<String>, Object, Object) - Static method in class org.j8unit.Assert
 
assertNotEquals(Supplier<String>, long, long) - Static method in class org.j8unit.Assert
 
assertNotEquals(Supplier<String>, double, double, double) - Static method in class org.j8unit.Assert
 
assertNotEquals(Supplier<String>, float, float, float) - Static method in class org.j8unit.Assert
 
assertNotNull(CharSequence, Object) - Static method in class org.j8unit.Assert
 
assertNotNull(Supplier<String>, Object) - Static method in class org.j8unit.Assert
 
assertNotSame(CharSequence, Object, Object) - Static method in class org.j8unit.Assert
 
assertNotSame(Supplier<String>, Object, Object) - Static method in class org.j8unit.Assert
 
assertNull(CharSequence, Object) - Static method in class org.j8unit.Assert
 
assertNull(Supplier<String>, Object) - Static method in class org.j8unit.Assert
 
assertSame(CharSequence, Object, Object) - Static method in class org.j8unit.Assert
 
assertSame(Supplier<String>, Object, Object) - Static method in class org.j8unit.Assert
 
assertTrue(CharSequence, boolean) - Static method in class org.j8unit.Assert
 
assertTrue(Supplier<String>, boolean) - Static method in class org.j8unit.Assert
 

C

createNewSUT() - Method in interface org.j8unit.FactoryBasedJ8UnitTest
Factory method to create a new subject-under-test (of type SUT).
createNewSUT() - Method in interface org.j8unit.J8UnitTest
Factory method to create a new subject-under-test (of type SUT).
createRunnerForTestWithParameters(TestWithParameters) - Method in class org.j8unit.runners.parameterized.J8BlockJUnit4ClassRunnerWithParametersFactory
In order to support default @Test annotated default methods implemented interfaces, the test runner returned by this method uses J8TestClass internally.
createTestClass(Class<?>) - Method in class org.j8unit.runners.J8BlockJUnit4ClassRunner
Returns an extended test class model of the given Class.
createTestClass(Class<?>) - Method in class org.j8unit.runners.J8Parameterized
Returns an extended test class model of the given Class.
createTestClass(Class<?>) - Method in class org.j8unit.runners.parameterized.J8BlockJUnit4ClassRunnerWithParameters
 

F

FactoryBasedJ8UnitTest<SUT> - Interface in org.j8unit
In case a subject-under-test (SUT) based J8Unit test uses a SUT factory to produce fresh SUT instances, this interface should be used in preference to J8UnitTest.
fail(CharSequence) - Static method in class org.j8unit.Assert
 
fail(Supplier<String>) - Static method in class org.j8unit.Assert
 

G

getSUTFactory() - Method in interface org.j8unit.FactoryBasedJ8UnitTest
Returns a factory to be used when creating new subject-under-test instances (each of type SUT).

J

J8BlockJUnit4ClassRunner - Class in org.j8unit.runners
J8BlockJUnit4ClassRunner(Class<?>) - Constructor for class org.j8unit.runners.J8BlockJUnit4ClassRunner
Creates a J8BlockJUnit4ClassRunner instance to run the tests of the given Class.
J8BlockJUnit4ClassRunnerWithParameters - Class in org.j8unit.runners.parameterized
An extension of BlockJUnit4ClassRunnerWithParameters in order to support the J8Unit test class model.
J8BlockJUnit4ClassRunnerWithParameters(TestWithParameters) - Constructor for class org.j8unit.runners.parameterized.J8BlockJUnit4ClassRunnerWithParameters
 
J8BlockJUnit4ClassRunnerWithParametersFactory - Class in org.j8unit.runners.parameterized
J8BlockJUnit4ClassRunnerWithParametersFactory() - Constructor for class org.j8unit.runners.parameterized.J8BlockJUnit4ClassRunnerWithParametersFactory
 
J8Parameterized - Class in org.j8unit.runners
J8Parameterized(Class<?>) - Constructor for class org.j8unit.runners.J8Parameterized
Creates a J8Parameterized instance to run the tests of the given Class.
J8TestClass - Class in org.j8unit.runners.model
This is an extended test class model that, in addition, is able to discover any @Test annotated default method of each (either directly or indirectly) implemented interface.
J8TestClass(Class<?>) - Constructor for class org.j8unit.runners.model.J8TestClass
Creates a J8TestClass based of the tests within the given Class.
J8Unit4 - Class in org.j8unit.runners
Aliases the current default J8Unit class runner, for future-proofing.
J8Unit4(Class<?>) - Constructor for class org.j8unit.runners.J8Unit4
Constructs a new instance of the default J8Unit runner.
J8UnitTest<SUT> - Interface in org.j8unit
Base interface of subject-under-test (SUT) based J8Unit tests.

O

org.j8unit - package org.j8unit
According to the goals of J8Unit, this packages contains base J8Unit components and any required extension of org.junit' classes.
org.j8unit.runners - package org.j8unit.runners
According to the goals of J8Unit, this packages contains any required extension of org.junit.runners' classes.
org.j8unit.runners.model - package org.j8unit.runners.model
According to the goals of J8Unit, this packages contains any required extension of org.junit.runners.model' classes.
org.j8unit.runners.parameterized - package org.j8unit.runners.parameterized
According to the goals of J8Unit, this packages contains any required extension of org.j8unit.runners.parameterized' classes.

S

scanAnnotatedDefaultMethods(Map<Class<? extends Annotation>, List<FrameworkMethod>>) - Method in class org.j8unit.runners.model.J8TestClass
Scans for all default methods and adds those into methodsForAnnotations if and only if there is no specific class implementation.
scanAnnotatedMembers(Map<Class<? extends Annotation>, List<FrameworkMethod>>, Map<Class<? extends Annotation>, List<FrameworkField>>) - Method in class org.j8unit.runners.model.J8TestClass
In addition to the TestClass.scanAnnotatedMembers(Map, Map), this method also scans for @Test annotated default method of each (either directly or indirectly) implemented interface.
A C F G J O S 
Skip navigation links

Copyright © 2015. All rights reserved.