/var/www/vhosts/nabawater/vendor/sebastian/diff/tests
NameSizeModeActions
fixtures/-0775rm
LCS/-0775rm
ChunkTest.php15460664editdlrm
DifferTest.php154220664editdlrm
DiffTest.php16300664editdlrm
LineTest.php9090664editdlrm
ParserTest.php42360664editdlrm
Edit: /var/www/vhosts/nabawater/vendor/sebastian/diff/tests/LineTest.php (909B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\Diff; use PHPUnit\Framework\TestCase; /** * @covers SebastianBergmann\Diff\Line */ class LineTest extends TestCase { /** * @var Line */ private $line; protected function setUp() { $this->line = new Line; } public function testCanBeCreatedWithoutArguments() { $this->assertInstanceOf('SebastianBergmann\Diff\Line', $this->line); } public function testTypeCanBeRetrieved() { $this->assertEquals(Line::UNCHANGED, $this->line->getType()); } public function testContentCanBeRetrieved() { $this->assertEquals('', $this->line->getContent()); } }