A B C D E F G H I J L M N O P R S T U V W
All Classes All Packages
All Classes All Packages
All Classes All Packages
I
- ignore(LogEvent) - Method in class com.github.robtimus.junit.support.extension.testlogger.Log4jNullAppender
-
Ignores an event.
- includeValuesInMessage(boolean) - Method in class com.github.robtimus.junit.support.AssertionFailedErrorBuilder
-
Sets whether or not to include the actual and expected values in the generated failure message.
- index() - Method in class com.github.robtimus.junit.support.extension.MethodLookup.Result
-
Returns the index of the parameter type combination that was used to find the method.
- InjectingExtension - Class in com.github.robtimus.junit.support.extension
-
An abstract base class for JUnit extensions that can inject values in fields and/or parameters.
- InjectingExtension(Predicate<Field>, MethodHandles.Lookup) - Constructor for class com.github.robtimus.junit.support.extension.InjectingExtension
-
Creates a new extension.
- InjectionTarget - Class in com.github.robtimus.junit.support.extension
-
A representation of an injection target.
- inputStream() - Method in interface com.github.robtimus.junit.support.test.io.InputStreamTests
-
Returns the input stream to test.
- InputStreamDelegateTests - Interface in com.github.robtimus.junit.support.test.io
-
Base interface for testing that
InputStream
implementations correctly delegate to anotherInputStream
. - InputStreamDelegateTests.CloseTests - Interface in com.github.robtimus.junit.support.test.io
-
Contains tests for
InputStream.close()
. - InputStreamTests - Interface in com.github.robtimus.junit.support.test.io
-
Base interface for testing separate
InputStream
functionalities. - InputStreamTests.AvailableTests - Interface in com.github.robtimus.junit.support.test.io
-
Contains tests for
InputStream.available()
. - InputStreamTests.MarkResetTests - Interface in com.github.robtimus.junit.support.test.io
-
Contains tests for
InputStream.mark(int)
andInputStream.reset()
. - InputStreamTests.ReadAllBytesTests - Interface in com.github.robtimus.junit.support.test.io
-
Contains tests for
InputStream.readAllBytes()
. - InputStreamTests.ReadByteTests - Interface in com.github.robtimus.junit.support.test.io
-
Contains tests for
InputStream.read()
. - InputStreamTests.ReadIntoByteArrayPortionTests - Interface in com.github.robtimus.junit.support.test.io
-
Contains tests for
InputStream.read(byte[], int, int)
. - InputStreamTests.ReadIntoByteArrayTests - Interface in com.github.robtimus.junit.support.test.io
-
Contains tests for
InputStream.read(byte[])
. - InputStreamTests.ReadNBytesIntoByteArrayPortionTests - Interface in com.github.robtimus.junit.support.test.io
-
Contains tests for
InputStream.readNBytes(byte[], int, int)
. - InputStreamTests.ReadNBytesTests - Interface in com.github.robtimus.junit.support.test.io
-
Contains tests for
InputStream.readNBytes(int)
. - InputStreamTests.SkipTests - Interface in com.github.robtimus.junit.support.test.io
-
Contains tests for
InputStream.skip(long)
. - InputStreamTests.TransferToTests - Interface in com.github.robtimus.junit.support.test.io
-
Contains tests for
InputStream.transferTo(OutputStream)
. - IOAssertions - Class in com.github.robtimus.junit.support
-
A collection of utility methods that support asserting conditions related to I/O.
- isAnnotated(Class<? extends Annotation>) - Method in class com.github.robtimus.junit.support.extension.InjectionTarget
-
Checks whether or not an annotation of a specific type is either present or meta-present on the injection target.
- isAnnotated(Class<? extends Annotation>, boolean) - Method in class com.github.robtimus.junit.support.extension.InjectionTarget
-
Checks whether or not an annotation of a specific type is either present or meta-present on the injection target.
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.CollectionTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.IterableTests
-
Returns the iterable to test.
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.IteratorTests
-
Returns an iterable that returns iterators to test.
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.ListIteratorTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.ListTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.MapTests.EntrySetTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.MapTests.EntrySetTests.IteratorTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.MapTests.KeySetTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.MapTests.KeySetTests.IteratorTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.MapTests.ValuesTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.MapTests.ValuesTests.IteratorTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.SetTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.SpliteratorTests
-
Returns an iterable that returns spliterators to test.
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.UnmodifiableMapTests.EntrySetTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.UnmodifiableMapTests.EntrySetTests.IteratorTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.UnmodifiableMapTests.KeySetTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.UnmodifiableMapTests.KeySetTests.IteratorTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.UnmodifiableMapTests.ValuesTests
- iterable() - Method in interface com.github.robtimus.junit.support.test.collections.UnmodifiableMapTests.ValuesTests.IteratorTests
- IterableTests<T> - Interface in com.github.robtimus.junit.support.test.collections
-
Base interface for testing separate
Iterable
functionalities. - IterableTests.ForEachTests<T> - Interface in com.github.robtimus.junit.support.test.collections
-
Contains tests for
Iterable.forEach(Consumer)
. - IteratorTests<T> - Interface in com.github.robtimus.junit.support.test.collections
-
Base interface for testing separate
Iterator
functionalities. - IteratorTests.ForEachRemainingTests<T> - Interface in com.github.robtimus.junit.support.test.collections
-
Contains tests for
Iterator.forEachRemaining(Consumer)
. - IteratorTests.IterationTests<T> - Interface in com.github.robtimus.junit.support.test.collections
-
Contains tests for
Iterator.hasNext()
andIterator.next()
. - IteratorTests.RemoveTests<T> - Interface in com.github.robtimus.junit.support.test.collections
-
Contains tests for
Iterator.remove()
.
All Classes All Packages