| Chunk |
|---|
| Conflicting content |
|---|
} /** <<<<<<< HEAD * Attests that the subject contains one or more objects, or fails */ public And |
| Solution content |
|---|
} /** * Attests that the subject contains one or more objects, or fails */ public And |
| File |
|---|
| IterableSubject.java |
| Developer's decision |
|---|
| Manual |
| Kind of conflict |
|---|
| Comment |
| For statement |
| If statement |
| Method declaration |
| Method invocation |
| Method signature |
| Variable |
| Chunk |
|---|
| Conflicting content |
|---|
<<<<<<< HEAD
}
}
@Test public void iterablehasContentsAnyOrder() {
ASSERT.that(iterable(1, 2, 3)).hasContentsAnyOrder(2, 3, 1);
}
@Test public void iterablehasContentsAnyOrder_Fail() {
try {
ASSERT.that(iterable(1, 2, 3)).hasContentsAnyOrder(2, 3, 4);
fail("Should have thrown.");
} catch (AssertionError e) {
ASSERT.that(e.getMessage()).contains("Not true that");
}
}
=======
>>>>>>> 2bd108d91dc1f0cdda8ef5767b0a10af40af7f57
@Test public void iteratesOverSequence() {
ASSERT.that(iterable(1, 2, 3)).iteratesOverSequence(1, 2, 3); |
| Solution content |
|---|
}
}
@Test public void iteratesOverSequence() {
ASSERT.that(iterable(1, 2, 3)).iteratesOverSequence(1, 2, 3); |
| File |
|---|
| IterableTest.java |
| Developer's decision |
|---|
| Version 2 |
| Kind of conflict |
|---|
| Method declaration |