From: kondou Date: Mon, 5 Aug 2013 17:38:52 +0000 (+0200) Subject: Remove pointless unittest (search/result) X-Git-Tag: v6.0.0alpha2~350^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=87ad6771515851bcfd933bf62bbf1bfd78f940f6;p=nextcloud-server.git Remove pointless unittest (search/result) --- diff --git a/tests/lib/search/result.php b/tests/lib/search/result.php deleted file mode 100644 index 94a7f76bd1d..00000000000 --- a/tests/lib/search/result.php +++ /dev/null @@ -1,17 +0,0 @@ - - * 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); - } -}