Skip to content

Commit

Permalink
Test compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
beberlei committed May 28, 2021
1 parent 30e1dea commit b4ef112
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/Monorepo/BuildTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,13 @@ public function testBuildWithIncludePathExampleProject()
$this->assertContains(realpath(__DIR__ . '/../../') . '/bar/lib', $includePaths);
}

public function __call($method, $args)
{
if ($method === 'assertStringContainsString') {
call_uer_func_array([$this, 'assertContains'], $args);
}
}

/** @after */
protected function tearDownStuff()
{
Expand Down

0 comments on commit b4ef112

Please sign in to comment.