소스 검색

Add todos to explain why try/catch is inside the test

Nils Adermann 13 년 전
부모
커밋
e6143d1584
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      tests/Composer/Test/DependencyResolver/SolverTest.php

+ 2 - 0
tests/Composer/Test/DependencyResolver/SolverTest.php

@@ -503,6 +503,7 @@ class SolverTest extends TestCase
             $transaction = $this->solver->solve($this->request);
             $this->fail('Unsolvable conflict did not resolve in exception.');
         } catch (SolverProblemsException $e) {
+            // @todo: assert problem properties
         }
     }
 
@@ -523,6 +524,7 @@ class SolverTest extends TestCase
             $transaction = $this->solver->solve($this->request);
             $this->fail('Unsolvable conflict did not resolve in exception.');
         } catch (SolverProblemsException $e) {
+            // @todo: assert problem properties
         }
     }