/home/techb158/ileadtechnology.com/vendor/sebastian/diff/tests
NameSizeModeActions
Exception/-0755rm
fixtures/-0755rm
Output/-0755rm
Utils/-0755rm
ChunkTest.php16820644editdlrm
DifferTest.php120110644editdlrm
DiffTest.php16530644editdlrm
LineTest.php9420644editdlrm
LongestCommonSubsequenceTest.php57680644editdlrm
MemoryEfficientImplementationTest.php6390644editdlrm
ParserTest.php48950644editdlrm
TimeEfficientImplementationTest.php6330644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/sebastian/diff/tests/LineTest.php (942B)
* * 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 */ final class LineTest extends TestCase { /** * @var Line */ private $line; protected function setUp(): void { $this->line = new Line; } public function testCanBeCreatedWithoutArguments(): void { $this->assertInstanceOf(Line::class, $this->line); } public function testTypeCanBeRetrieved(): void { $this->assertSame(Line::UNCHANGED, $this->line->getType()); } public function testContentCanBeRetrieved(): void { $this->assertSame('', $this->line->getContent()); } }