summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-08-05 19:38:52 +0200
committerkondou <kondou@ts.unde.re>2013-08-05 19:38:52 +0200
commit87ad6771515851bcfd933bf62bbf1bfd78f940f6 (patch)
tree2e6c77f2f03f792b4e1f6e3d95dfe7b4bb2e2a36
parenta51af395952b428bfbec03e04991849049f32a5d (diff)
downloadnextcloud-server-87ad6771515851bcfd933bf62bbf1bfd78f940f6.tar.gz
nextcloud-server-87ad6771515851bcfd933bf62bbf1bfd78f940f6.zip
Remove pointless unittest (search/result)
-rw-r--r--tests/lib/search/result.php17
1 files changed, 0 insertions, 17 deletions
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 @@
-<?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);
- }
-}