소스 검색

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',
-            ],
         ];
     }
 }