From 8184e356f495b3e58e7638259dcd047c0b56d83f Mon Sep 17 00:00:00 2001 From: Côme Chilliet Date: Thu, 28 Apr 2022 14:56:26 +0200 Subject: Remove test for removed class SearchResultSorter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Côme Chilliet --- tests/lib/Share/SearchResultSorterTest.php | 42 ------------------------------ 1 file changed, 42 deletions(-) delete mode 100644 tests/lib/Share/SearchResultSorterTest.php (limited to 'tests/lib/Share') diff --git a/tests/lib/Share/SearchResultSorterTest.php b/tests/lib/Share/SearchResultSorterTest.php deleted file mode 100644 index 63c3aead62e..00000000000 --- a/tests/lib/Share/SearchResultSorterTest.php +++ /dev/null @@ -1,42 +0,0 @@ - - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE - * License as published by the Free Software Foundation; either - * version 3 of the License, or any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU AFFERO GENERAL PUBLIC LICENSE for more details. - * - * You should have received a copy of the GNU Affero General Public - * License along with this library. If not, see . - */ - -namespace Test\Share; - -class SearchResultSorterTest extends \Test\TestCase { - public function testSort() { - $search = 'lin'; - $sorter = new \OC\Share\SearchResultSorter($search, 'foobar'); - - $result = [ - ['foobar' => 'woot'], - ['foobar' => 'linux'], - ['foobar' => 'Linus'], - ['foobar' => 'Bicyclerepairwoman'], - ]; - - usort($result, [$sorter, 'sort']); - $this->assertTrue($result[0]['foobar'] === 'Linus'); - $this->assertTrue($result[1]['foobar'] === 'linux'); - $this->assertTrue($result[2]['foobar'] === 'Bicyclerepairwoman'); - $this->assertTrue($result[3]['foobar'] === 'woot'); - } -} -- cgit v1.2.3