Skip to content

Commit

Permalink
Define PasskeyRestClientTest
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomazFB committed Oct 18, 2023
1 parent 2e958b3 commit 4841d4c
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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()
)
}
}

0 comments on commit 4841d4c

Please sign in to comment.