Skip to content
Merged
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 @@ -238,7 +238,7 @@ protected void testBulkWriteCollectsWriteConcernErrorsAcrossBatches() throws Int
}

@DisplayName("6. MongoClient.bulkWrite handles individual WriteErrors across batches")
@ParameterizedTest
@ParameterizedTest(name = "6. MongoClient.bulkWrite handles individual WriteErrors across batches--ordered:{0}")
@ValueSource(booleans = {false, true})
protected void testBulkWriteHandlesWriteErrorsAcrossBatches(final boolean ordered) {
assumeTrue(serverVersionAtLeast(8, 0));
Expand Down Expand Up @@ -380,7 +380,7 @@ private void testBulkWriteSplitsWhenExceedingMaxMessageSizeBytesDueToNsInfo(
}

@DisplayName("12. MongoClient.bulkWrite returns an error if no operations can be added to ops")
@ParameterizedTest
@ParameterizedTest(name = "12. MongoClient.bulkWrite returns an error if no operations can be added to ops--tooLarge:{0}")
@ValueSource(strings = {"document", "namespace"})
protected void testBulkWriteSplitsErrorsForTooLargeOpsOrNsInfo(final String tooLarge) {
assumeTrue(serverVersionAtLeast(8, 0));
Expand Down Expand Up @@ -465,7 +465,8 @@ protected void testWriteConcernOfAllBatchesWhenUnacknowledgedRequested() {
/**
* This test is not from the specification.
*/
@ParameterizedTest
@DisplayName("insertMustGenerateIdAtMostOnce")
@ParameterizedTest(name = "insertMustGenerateIdAtMostOnce--documentClass:{0}, expectIdGenerated:{1}")
@MethodSource("insertMustGenerateIdAtMostOnceArgs")
protected <TDocument> void insertMustGenerateIdAtMostOnce(
final Class<TDocument> documentClass,
Expand Down