PATH:
home
/
letacommog
/
laindinois
/
wp-content
/
plugins
/
wiloke-listing-tools
/
vendor
/
theseer
/
tokenizer
/
tests
<?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()); } }
[+]
..
[+]
_files
[-] XMLSerializerTest.php
[edit]
[-] TokenCollectionTest.php
[edit]
[-] TokenTest.php
[edit]
[-] TokenizerTest.php
[edit]
[-] NamespaceUriTest.php
[edit]