Remove pointless unittest (search/result)

This commit is contained in:
kondou 2013-08-05 19:38:52 +02:00
parent a51af39595
commit 87ad677151
1 changed files with 0 additions and 17 deletions

View File

@ -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);
}
}