mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-02-19 13:10:54 +01:00
Fixed ktlint errors
This commit is contained in:
parent
ca2bfbf14b
commit
0f42ee20cc
@ -1,7 +1,5 @@
|
|||||||
package org.moire.ultrasonic.api.subsonic
|
package org.moire.ultrasonic.api.subsonic
|
||||||
|
|
||||||
import com.fasterxml.jackson.databind.ObjectMapper
|
|
||||||
import okhttp3.mockwebserver.MockResponse
|
|
||||||
import org.amshove.kluent.`should be`
|
import org.amshove.kluent.`should be`
|
||||||
import org.junit.Before
|
import org.junit.Before
|
||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
|
@ -2,9 +2,7 @@ package org.moire.ultrasonic.api.subsonic.interceptors
|
|||||||
|
|
||||||
import kotlin.LazyThreadSafetyMode.NONE
|
import kotlin.LazyThreadSafetyMode.NONE
|
||||||
import okhttp3.Interceptor
|
import okhttp3.Interceptor
|
||||||
import okhttp3.mockwebserver.MockResponse
|
|
||||||
import org.amshove.kluent.`should contain`
|
import org.amshove.kluent.`should contain`
|
||||||
import org.amshove.kluent.`should equal`
|
|
||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
import org.moire.ultrasonic.api.subsonic.SubsonicAPIVersions
|
import org.moire.ultrasonic.api.subsonic.SubsonicAPIVersions
|
||||||
import org.moire.ultrasonic.api.subsonic.enqueueResponse
|
import org.moire.ultrasonic.api.subsonic.enqueueResponse
|
||||||
|
@ -18,11 +18,15 @@ class SubsonicAPIVersionsTest(private val apiVersion: SubsonicAPIVersions) {
|
|||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `Should proper convert api version to enum`() {
|
fun `Should proper convert api version to enum`() {
|
||||||
SubsonicAPIVersions.getClosestKnownClientApiVersion(apiVersion.restApiVersion) `should equal` apiVersion
|
SubsonicAPIVersions.getClosestKnownClientApiVersion(
|
||||||
|
apiVersion.restApiVersion
|
||||||
|
) `should equal` apiVersion
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test(expected = IllegalArgumentException::class)
|
@Test(expected = IllegalArgumentException::class)
|
||||||
fun `Should throw IllegalArgumentException for unknown api version`() {
|
fun `Should throw IllegalArgumentException for unknown api version`() {
|
||||||
SubsonicAPIVersions.getClosestKnownClientApiVersion(apiVersion.restApiVersion.substring(0, 2))
|
SubsonicAPIVersions.getClosestKnownClientApiVersion(
|
||||||
|
apiVersion.restApiVersion.substring(0, 2)
|
||||||
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user