diff --git a/fluxc/src/test/java/org/wordpress/android/fluxc/network/rest/wpcom/auth/passkey/PasskeyRestClientTest.kt b/fluxc/src/test/java/org/wordpress/android/fluxc/network/rest/wpcom/auth/passkey/PasskeyRestClientTest.kt new file mode 100644 index 0000000000..30b0193bc2 --- /dev/null +++ b/fluxc/src/test/java/org/wordpress/android/fluxc/network/rest/wpcom/auth/passkey/PasskeyRestClientTest.kt @@ -0,0 +1,19 @@ +package org.wordpress.android.fluxc.network.rest.wpcom.auth.passkey + +import org.junit.Before +import org.mockito.kotlin.mock + +class PasskeyRestClientTest { + private lateinit var sut: PasskeyRestClient + + @Before + fun setUp() { + sut = PasskeyRestClient( + context = mock(), + dispatcher = mock(), + requestQueue = mock(), + accessToken = mock(), + userAgent = mock() + ) + } +} \ No newline at end of file