]> source.dussan.org Git - nextcloud-server.git/commitdiff
Remove pointless unittest (search/result)
authorkondou <kondou@ts.unde.re>
Mon, 5 Aug 2013 17:38:52 +0000 (19:38 +0200)
committerkondou <kondou@ts.unde.re>
Mon, 5 Aug 2013 17:38:52 +0000 (19:38 +0200)
tests/lib/search/result.php [deleted file]

diff --git a/tests/lib/search/result.php b/tests/lib/search/result.php
deleted file mode 100644 (file)
index 94a7f76..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-<?php
-/**
- * Copyright (c) 2013 Christopher Schäpers <christopher@schaepers.it>
- * This file is licensed under the Affero General Public License version 3 or
- * later.
- * See the COPYING-README file.
- */
-
-class Test_Search_Result extends PHPUnit_Framework_TestCase {
-       public function testConstruct() {
-               $result = new \OC_Search_Result("name", "text", "link", "type");
-               $this->assertEquals('name', $result->name);
-               $this->assertEquals('text', $result->text);
-               $this->assertEquals('link', $result->link);
-               $this->assertEquals('type', $result->type);
-       }
-}