We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
testEmptyDiff()
testEmptyDiff_toArray()
1 parent 379b390 commit b530a2fCopy full SHA for b530a2f
tests/DiffTest.php
@@ -240,22 +240,6 @@ public function testComparisonErrorOverlapingMatches2_toArray()
240
$this->assertEquals($expected, $this->diff->diffToArray('abcdde', 'abcde'));
241
}
242
243
- /**
244
- * @covers SebastianBergmann\Diff::diff
245
- */
246
- public function testEmptyDiff()
247
- {
248
- $this->assertEquals('', $this->diff->diff('abc', 'abc'));
249
- }
250
-
251
252
- * @covers SebastianBergmann\Diff::toArray
253
254
- public function testEmptyDiff_toArray()
255
256
- $this->assertEquals(array(), $this->diff->diffToArray('abc', 'abc'));
257
258
259
public function testCustomHeader()
260
{
261
$diff = new Diff('CUSTOM HEADER');
0 commit comments