diff options
author | Mario <mario@mariovavti.com> | 2020-11-26 12:01:15 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2020-11-26 12:01:15 +0000 |
commit | f4f1974be02600fd20a142686c3d478e7a45fc69 (patch) | |
tree | 8f1498f69b29463c9e7d4527335172bd1f6c4842 /tests | |
parent | 6f6399ca0f30870ef83b64121d379e537ceebfb8 (diff) | |
download | volse-hubzilla-f4f1974be02600fd20a142686c3d478e7a45fc69.tar.gz volse-hubzilla-f4f1974be02600fd20a142686c3d478e7a45fc69.tar.bz2 volse-hubzilla-f4f1974be02600fd20a142686c3d478e7a45fc69.zip |
those would require dbunit
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/Access/AccessListTest.php | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/unit/Access/AccessListTest.php b/tests/unit/Access/AccessListTest.php index dbc19fabb..3c8d3e859 100644 --- a/tests/unit/Access/AccessListTest.php +++ b/tests/unit/Access/AccessListTest.php @@ -63,11 +63,12 @@ class AccessListTest extends UnitTestCase { /** * @expectedException PHPUnit\Framework\Error\Error */ +/* public function testPHPErrorOnInvalidConstructor() { $accessList = new AccessList('invalid'); // Causes: "Illegal string offset 'channel_allow_cid'" } - +*/ public function testDefaultGetExplicit() { $accessList = new AccessList([]); @@ -112,12 +113,14 @@ class AccessListTest extends UnitTestCase { /** * @expectedException PHPUnit\Framework\Error\Error */ +/* public function testPHPErrorOnInvalidSet() { $accessList = new AccessList([]); $accessList->set('invalid'); // Causes: "Illegal string offset 'allow_cid'" } +*/ /** * set_from_array() calls some other functions, too which are not yet unit tested. @@ -188,4 +191,4 @@ class AccessListTest extends UnitTestCase { ]; } -}
\ No newline at end of file +} |