"ManagerTestBase::testExecuteBizRule()" has been fixed to not produce side effects on other tests.

This commit is contained in:
Klimov Paul
2013-05-18 17:28:28 +03:00
parent 946f65523c
commit d4b896f65c

View File

@ -167,7 +167,7 @@ abstract class ManagerTestBase extends TestCase
$this->assertTrue($this->auth->executeBizRule(null, array(), null));
$this->assertTrue($this->auth->executeBizRule('return 1 == true;', array(), null));
$this->assertTrue($this->auth->executeBizRule('return $params[0] == $params[1];', array(1, '1'), null));
$this->assertFalse($this->auth->executeBizRule('invalid', array(), null));
$this->assertFalse($this->auth->executeBizRule('invalid;', array(), null));
}
public function testCheckAccess()