Skip to content

Commit

Permalink
Add todos to explain why try/catch is inside the test
Browse files Browse the repository at this point in the history
  • Loading branch information
naderman committed Feb 18, 2012
1 parent 52d876e commit e6143d1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/Composer/Test/DependencyResolver/SolverTest.php
Expand Up @@ -503,6 +503,7 @@ public function testConflictResultEmpty()
$transaction = $this->solver->solve($this->request);
$this->fail('Unsolvable conflict did not resolve in exception.');
} catch (SolverProblemsException $e) {
// @todo: assert problem properties
}
}

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

Expand Down

0 comments on commit e6143d1

Please sign in to comment.