Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2042,7 +2042,7 @@ translates to a `Collection`, an `Iterable`, a `Supplier` of a stream (`Stream`,
objects or primitives, or any type that provides an `iterator(): Iterator` method (such
as, for example, a `kotlin.sequences.Sequence`). Each set of "arguments" within the
"stream" can be supplied as an instance of `Arguments`, an array of objects (for example,
`Object[]`, `String[]`, etc.), or a single value if the parameterized class ortest method accepts
`Object[]`, `String[]`, etc.), or a single value if the parameterized class or test method accepts
a single argument.

[WARNING]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ void executeTestCaseWithOverloadedMethodsAndThenRerunOnlyOneOfTheMethodsSelected
}

@Test
void executeTestCaseWithOverloadedMethodsWithSingleMethodThatAcceptsArgumentsSelectedByFullyQualifedMethodName() {
void executeTestCaseWithOverloadedMethodsWithSingleMethodThatAcceptsArgumentsSelectedByFullyQualifiedMethodName() {
String fqmn = TestCase.class.getName() + "#test(" + TestInfo.class.getName() + ")";
Events tests = executeTests(selectMethod(fqmn)).testEvents();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ void understandsEscapeCharacters() {
}

@Test
void understandsEscapeCharactersWithCutomQuoteCharacter() {
void understandsEscapeCharactersWithCustomQuoteCharacter() {
var annotation = csvSource().quoteCharacter('~').lines("~foo or ~~bar~~~, baz").build();

var arguments = provideArguments(annotation);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1768,7 +1768,7 @@ void findMethodsDoesNotReturnOverriddenMethods() {
}

@Test
void findMethodsReturnsAllOverloadedMethodsInGenericTypeHieararchy() {
void findMethodsReturnsAllOverloadedMethodsInGenericTypeHierarchy() {
Class<?> clazz = InterfaceWithGenericDefaultMethodImpl.class;

// Search for all foo(*) methods.
Expand Down Expand Up @@ -2058,7 +2058,7 @@ void readFieldValuesFromClass() {
* @since 1.11
*/
@Test
void readFieldValuesFromInteracesAndClassesInTypeHierarchy() {
void readFieldValuesFromInterfacesAndClassesInTypeHierarchy() {
var fields = findFields(InterfaceWithField.class, ReflectionUtils::isStatic, TOP_DOWN);
var values = readFieldValues(fields, null);
assertThat(values).containsOnly("ifc");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ void retrievingOptionalEngineId() {
var uniqueIdWithEngine = UniqueId.forEngine(ENGINE_ID);
assertThat(uniqueIdWithEngine.getEngineId()).contains("junit-jupiter");

var uniqueIdWithoutEngine = UniqueId.root("root", "avalue");
var uniqueIdWithoutEngine = UniqueId.root("root", "aValue");
assertEquals(Optional.empty(), uniqueIdWithoutEngine.getEngineId());
}

Expand Down