/* * Pupil, Hitomi.la viewer for Android * Copyright (C) 2019 tom5079 * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package xyz.quaver.pupil /** * Example local unit test, which will execute on the development machine (host). * * See [testing documentation](http://d.android.com/tools/testing). */ import kotlinx.coroutines.runBlocking import kotlinx.coroutines.test.runTest import org.junit.Test import xyz.quaver.pupil.networking.HitomiHttpClient class ExampleUnitTest { @Test fun test() = runTest { val hitomi = HitomiHttpClient() val result = hitomi.getGalleryIDsFromNozomi(null, "index", "all") println(result.array()) } }