diff --git a/tests/phpunit/classes/AccessTokenTest.class.php b/tests/phpunit/classes/AccessTokenTest.class.php deleted file mode 100644 index a7b5a3e82b..0000000000 --- a/tests/phpunit/classes/AccessTokenTest.class.php +++ /dev/null @@ -1,173 +0,0 @@ -object = new AccessToken(1, 1, 1); - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - unset($this->object); - } - - /** - * Generated from @assert () !== null. - * - * @covers AccessToken::empty_token - */ - public function testEmpty_token() - { - $this->assertNotSame( - null, - AccessToken::empty_token() - ); - } - - /** - * Generated from @assert ('') !== null. - * - * @covers AccessToken::parse - */ - public function testParse() - { - $this->assertNotSame( - null, - AccessToken::parse('') - ); - } - - /** - * Generated from @assert (base64_encode('a/b')) !== null. - * - * @covers AccessToken::parse - */ - public function testParse2() - { - $this->assertNotSame( - null, - AccessToken::parse(base64_encode('a/b')) - ); - } - - /** - * Generated from @assert (base64_encode('a/b/c')) !== null. - * - * @covers AccessToken::parse - */ - public function testParse3() - { - $this->assertNotSame( - null, - AccessToken::parse(base64_encode('a/b/c')) - ); - } - - /** - * Generated from @assert (0, 0, 'a') !== null. - * - * @covers AccessToken::create - */ - public function testCreate() - { - $this->assertNotSame( - null, - AccessToken::create(0, 0, 'a') - ); - } - - /** - * Generated from @assert () > 0. - * - * @covers AccessToken::get_id - */ - public function testGet_id() - { - $this->assertGreaterThan( - 0, - $this->object->get_id() - ); - } - - /** - * Generated from @assert () > 0. - * - * @covers AccessToken::get_user_id - */ - public function testGet_user_id() - { - $this->assertGreaterThan( - 0, - $this->object->get_user_id() - ); - } - - /** - * Generated from @assert () !== null. - * - * @covers AccessToken::get_key - */ - public function testGet_key() - { - $this->assertNotSame( - null, - $this->object->get_key() - ); - } - - /** - * Generated from @assert () === true. - * - * @covers AccessToken::is_empty - */ - public function testIs_empty() - { - $this->assertSame( - true, - $this->object->is_empty() - ); - } - - /** - * Generated from @assert () === false. - * - * @covers AccessToken::is_valid - */ - public function testIs_valid() - { - $this->assertSame( - false, - $this->object->is_valid() - ); - } - - /** - * Generated from @assert () !== null. - * - * @covers AccessToken::__toString - */ - public function test__toString() - { - $this->assertNotSame( - null, - $this->object->__toString() - ); - } -} diff --git a/tests/phpunit/classes/InvalidArgumentExceptionTest.class.php b/tests/phpunit/classes/InvalidArgumentExceptionTest.class.php deleted file mode 100644 index d19cb3e1f8..0000000000 --- a/tests/phpunit/classes/InvalidArgumentExceptionTest.class.php +++ /dev/null @@ -1,28 +0,0 @@ -object = new InvalidArgumentException; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } -} diff --git a/tests/phpunit/classes/LengthExceptionTest.class.php b/tests/phpunit/classes/LengthExceptionTest.class.php deleted file mode 100644 index 65b4146a6d..0000000000 --- a/tests/phpunit/classes/LengthExceptionTest.class.php +++ /dev/null @@ -1,28 +0,0 @@ -object = new LengthException; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } -} diff --git a/tests/phpunit/classes/LibXMLErrorTest.class.php b/tests/phpunit/classes/LibXMLErrorTest.class.php deleted file mode 100644 index 2799ed4c1b..0000000000 --- a/tests/phpunit/classes/LibXMLErrorTest.class.php +++ /dev/null @@ -1,28 +0,0 @@ -object = new LibXMLError; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } -} diff --git a/tests/phpunit/classes/LogicExceptionTest.class.php b/tests/phpunit/classes/LogicExceptionTest.class.php deleted file mode 100644 index 006dd2bda8..0000000000 --- a/tests/phpunit/classes/LogicExceptionTest.class.php +++ /dev/null @@ -1,28 +0,0 @@ -object = new LogicException; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } -} diff --git a/tests/phpunit/classes/OutOfBoundsExceptionTest.class.php b/tests/phpunit/classes/OutOfBoundsExceptionTest.class.php deleted file mode 100644 index 53893e81de..0000000000 --- a/tests/phpunit/classes/OutOfBoundsExceptionTest.class.php +++ /dev/null @@ -1,28 +0,0 @@ -object = new OutOfBoundsException; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } -} diff --git a/tests/phpunit/classes/OutOfRangeExceptionTest.class.php b/tests/phpunit/classes/OutOfRangeExceptionTest.class.php deleted file mode 100644 index 0f5e9e281c..0000000000 --- a/tests/phpunit/classes/OutOfRangeExceptionTest.class.php +++ /dev/null @@ -1,28 +0,0 @@ -object = new OutOfRangeException; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } -} diff --git a/tests/phpunit/classes/OverflowExceptionTest.class.php b/tests/phpunit/classes/OverflowExceptionTest.class.php deleted file mode 100644 index 49c0d86499..0000000000 --- a/tests/phpunit/classes/OverflowExceptionTest.class.php +++ /dev/null @@ -1,28 +0,0 @@ -object = new OverflowException; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } -} diff --git a/tests/phpunit/classes/PharExceptionTest.class.php b/tests/phpunit/classes/PharExceptionTest.class.php deleted file mode 100644 index 46ed265ecc..0000000000 --- a/tests/phpunit/classes/PharExceptionTest.class.php +++ /dev/null @@ -1,28 +0,0 @@ -object = new PharException; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } -} diff --git a/tests/phpunit/classes/UnderflowExceptionTest.class.php b/tests/phpunit/classes/UnderflowExceptionTest.class.php deleted file mode 100644 index 3575e959cc..0000000000 --- a/tests/phpunit/classes/UnderflowExceptionTest.class.php +++ /dev/null @@ -1,28 +0,0 @@ -object = new UnderflowException; - } - - /** - * Tears down the fixture, for example, closes a network connection. - * This method is called after a test is executed. - */ - protected function tearDown() - { - } -}