Added Laravel project
This commit is contained in:
31
Laravel/vendor/theseer/tokenizer/tests/TokenTest.php
vendored
Normal file
31
Laravel/vendor/theseer/tokenizer/tests/TokenTest.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?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());
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user