1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
require __DIR__ . '/../src/Create.php';
use function Stringy\create as s;
class CreateTestCase extends PHPUnit_Framework_TestCase { public function testCreate() { $stringy = s('foo bar', 'UTF-8'); $this->assertInstanceOf('Stringy\Stringy', $stringy); $this->assertEquals('foo bar', (string) $stringy); $this->assertEquals('UTF-8', $stringy->getEncoding()); } }
|