From 6b18cffc970a69a292c2d9836ff5b460a5d1005a Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Fri, 10 May 2019 23:45:18 +0400 Subject: Added external function get the list services Signed-off-by: Valentin Popov --- tests/api_test.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/api_test.php') diff --git a/tests/api_test.php b/tests/api_test.php index 5f7b8e2..c2a2f80 100644 --- a/tests/api_test.php +++ b/tests/api_test.php @@ -276,9 +276,11 @@ final class local_webhooks_api_testcase extends advanced_testcase { public function test_get_services_with_conditions() { $this->resetAfterTest(); + $records = []; $total = random_int(5, 20); + $limit = intdiv($total, 2); - $records = []; + // Creating some records. for ($i = 0; $i < $total; $i++) { $record = self::get_random_record(); $record->id = api::add_service($record); @@ -292,7 +294,6 @@ final class local_webhooks_api_testcase extends advanced_testcase { ])); // Testing limit fields. - $limit = intdiv($total, 2); self::assertCount($limit, api::get_services([], null, 1, $limit)); // Testing sort fields. -- cgit v1.2.3