Browse Source

Remove exceptions that are no longer used

Andreas Braun 10 years ago
parent
commit
bccf24471d
1 changed files with 0 additions and 12 deletions
  1. 0 12
      tests/Alcaeus/MongoDbAdapter/ExceptionConverterTest.php

+ 0 - 12
tests/Alcaeus/MongoDbAdapter/ExceptionConverterTest.php

@@ -80,21 +80,9 @@ class ExceptionConverterTest extends \PHPUnit_Framework_TestCase
                 'MongoException',
             ],
             [
-                new \MongoDB\Exception\InvalidArgumentTypeException('message', 2, 'foo'),
-                'MongoException',
-            ],
-            [
-                new \MongoDB\Exception\UnexpectedTypeException('message', 2),
-                'MongoException',
-            ],
-            [
                 new \MongoDB\Exception\UnexpectedValueException('message', 2),
                 'MongoException',
             ],
-            [
-                new \MongoDB\Exception\UnexpectedValueTypeException('message', 2, 'foo'),
-                'MongoException',
-            ],
         ];
     }
 }