ソースを参照

Remove exceptions that are no longer used

Andreas Braun 10 年 前
コミット
bccf24471d
1 ファイル変更0 行追加12 行削除
  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',
-            ],
         ];
     }
 }