diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-12-10 09:29:24 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-12-10 09:29:24 +0100 |
commit | 29b6a03fc1b81a2ae8272e2b18d57335558955d0 (patch) | |
tree | ff672735f3435357ef476bf6972614ef93b5ba52 | |
parent | 078ca149b595dd521339d4dcafbd1d8a6d2c1131 (diff) | |
download | nextcloud-server-29b6a03fc1b81a2ae8272e2b18d57335558955d0.tar.gz nextcloud-server-29b6a03fc1b81a2ae8272e2b18d57335558955d0.zip |
Add assertion to test
This seems to be missing on that test.
-rw-r--r-- | tests/lib/comments/comment.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/lib/comments/comment.php b/tests/lib/comments/comment.php index ae7e913eaab..02adea8729e 100644 --- a/tests/lib/comments/comment.php +++ b/tests/lib/comments/comment.php @@ -58,6 +58,8 @@ class Test_Comments_Comment extends TestCase $comment = new \OC\Comments\Comment(); $comment->setId('c23'); $comment->setId(''); + + $this->assertSame('', $comment->getId()); } public function simpleSetterProvider() { |