Skip to content
Snippets Groups Projects
Commit 87ad6771 authored by Christopher Schäpers's avatar Christopher Schäpers
Browse files

Remove pointless unittest (search/result)

parent a51af395
Branches
No related tags found
No related merge requests found
<?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);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment