adjust unit tests

This commit is contained in:
Arthur Schiwon 2016-01-26 13:16:14 +01:00
parent 8afa39682c
commit e5ba28f934
3 changed files with 6 additions and 7 deletions

View File

@ -71,12 +71,7 @@ class CommentsNode extends \Test\TestCase {
}
public function testGetLastModified() {
$dateTime = new \DateTime('2016-01-10 18:48:00');
$this->comment->expects($this->once())
->method('getCreationDateTime')
->will($this->returnValue($dateTime));
$this->assertSame($this->node->getLastModified(), $dateTime->getTimestamp());
$this->assertSame($this->node->getLastModified(), null);
}
public function testUpdateComment() {

View File

@ -23,6 +23,7 @@ namespace OCA\DAV\Tests\Unit\Comments;
use OC\Comments\Comment;
use OCA\DAV\Comments\CommentsPlugin as CommentsPluginImplementation;
use Sabre\DAV\Exception\NotFound;
class CommentsPlugin extends \Test\TestCase {
/** @var \Sabre\DAV\Server */
@ -146,6 +147,9 @@ class CommentsPlugin extends \Test\TestCase {
$this->plugin->httpPost($request, $response);
}
/**
* @expectedException \Sabre\DAV\Exception\NotFound
*/
public function testCreateCommentInvalidObject() {
$commentData = [
'actorType' => 'users',

View File

@ -74,7 +74,7 @@ class EntityTypeCollection extends \Test\TestCase {
}
/**
* @expectedException \Sabre\DAV\Exception\Forbidden
* @expectedException \Sabre\DAV\Exception\NotFound
*/
public function testGetChildException() {
$this->folder->expects($this->once())