From e6143d1584a1bd9d344d966b2bd5ebb6b8b175bb Mon Sep 17 00:00:00 2001 From: Nils Adermann Date: Sun, 19 Feb 2012 00:21:39 +0100 Subject: [PATCH] Add todos to explain why try/catch is inside the test --- tests/Composer/Test/DependencyResolver/SolverTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Composer/Test/DependencyResolver/SolverTest.php b/tests/Composer/Test/DependencyResolver/SolverTest.php index bea9d989b..18cb9f4a1 100644 --- a/tests/Composer/Test/DependencyResolver/SolverTest.php +++ b/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 } }