WP File Manager
Current Path:
/
home
/
itutorethiopia
/
public_html
/
vendor
/
theseer
/
tokenizer
/
tests
/
Name
Action
..
NamespaceUriTest.php
Edit
TokenCollectionTest.php
Edit
TokenTest.php
Edit
TokenizerTest.php
Edit
XMLSerializerTest.php
Edit
_files
Editing: TokenTest.php
<?php declare(strict_types = 1); namespace TheSeer\Tokenizer; use PHPUnit\Framework\TestCase; class TokenTest extends TestCase { /** @var Token */ private $token; protected function setUp() { $this->token = new Token(1,'test-dummy', 'blank'); } public function testTokenCanBeCreated() { $this->assertInstanceOf(Token::class, $this->token); } public function testTokenLineCanBeRetrieved() { $this->assertEquals(1, $this->token->getLine()); } public function testTokenNameCanBeRetrieved() { $this->assertEquals('test-dummy', $this->token->getName()); } public function testTokenValueCanBeRetrieved() { $this->assertEquals('blank', $this->token->getValue()); } }