Format GeneratorSdkSourceTest (#324)

This commit is contained in:
David Perez 2023-12-05 10:46:15 -06:00 committed by Álison Fernandes
parent c3e0843505
commit fad80fbd69

View file

@ -14,15 +14,15 @@ class GeneratorSdkSourceTest {
private val clientGenerators = mockk<ClientGenerators>()
private val generatorSdkSource: GeneratorSdkSource = GeneratorSdkSourceImpl(clientGenerators)
@Suppress("MaxLineLength")
@Test
fun `generatePassword should call SDK and return a Result with the generated password`() = runBlocking {
fun `generatePassword should call SDK and return a Result with the generated password`() =
runBlocking {
val request = PasswordGeneratorRequest(
lowercase = true,
uppercase = true,
numbers = true,
special = true,
length = 12.toUByte(),
length = 12U,
avoidAmbiguous = false,
minLowercase = 1U,
minUppercase = 1U,
@ -44,11 +44,11 @@ class GeneratorSdkSourceTest {
}
}
@Suppress("MaxLineLength")
@Test
fun `generatePassphrase should call SDK and return a Result with the generated passphrase`() = runBlocking {
fun `generatePassphrase should call SDK and return a Result with the generated passphrase`() =
runBlocking {
val request = PassphraseGeneratorRequest(
numWords = 4.toUByte(),
numWords = 4U,
wordSeparator = "-",
capitalize = true,
includeNumber = true,