diff options
author | Valentin Popov <info@valentineus.link> | 2019-05-10 22:45:18 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2019-05-10 22:45:18 +0300 |
commit | 6b18cffc970a69a292c2d9836ff5b460a5d1005a (patch) | |
tree | 704060693d9c86e361adbd191a97cda8cd55f63b /tests/api_test.php | |
parent | 0cbc05d52b18d06193b703c4eaced40b6f497d2d (diff) | |
download | local_webhooks-6b18cffc970a69a292c2d9836ff5b460a5d1005a.tar.xz local_webhooks-6b18cffc970a69a292c2d9836ff5b460a5d1005a.zip |
Added external function get the list services
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'tests/api_test.php')
-rw-r--r-- | tests/api_test.php | 5 |
1 files changed, 3 insertions, 2 deletions
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. |