浏览代码

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
         }
     }