Browse Source

add tests

remotes/origin/better-comments-in-activity-sidebar
Robin Appelman 10 years ago
parent
commit
2f01c83a01
  1. 14
      tests/lib/files/storage/local.php

14
tests/lib/files/storage/local.php

@ -70,5 +70,19 @@ class Local extends Storage {
$etag2 = $this->instance->getETag('test.txt');
$this->assertNotEquals($etag1, $etag2);
}
/**
* @expectedException \InvalidArgumentException
*/
public function testInvalidArgumentsEmptyArray() {
new \OC\Files\Storage\Local([]);
}
/**
* @expectedException \InvalidArgumentException
*/
public function testInvalidArgumentsNoArray() {
new \OC\Files\Storage\Local(null);
}
}
Loading…
Cancel
Save