-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3957 from PisanoWP/main
Reto #26 - Kotlin
- Loading branch information
Showing
1 changed file
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
/* | ||
* Reto #26 26/06/2023 | ||
* | ||
* Crea tres test sobre el reto 12: "Viernes 13". | ||
* - Puedes copiar una solución ya creada por otro usuario en | ||
* el lenguaje que estés utilizando. | ||
* - Debes emplear un mecanismo de ejecución de test que posea | ||
* el lenguaje de programación que hayas seleccionado. | ||
* - Los tres test deben de funcionar y comprobar | ||
* diferentes situaciones (a tu elección). | ||
* | ||
*/ | ||
|
||
|
||
import org.junit.jupiter.api.Test | ||
import org.junit.jupiter.api.Assertions.* | ||
|
||
internal class Reto26_viernes_13KtTest { | ||
|
||
@Test | ||
fun hasViernes13() { | ||
/* Relación de Viernes de 13 desde 2022 a 2025 | ||
MAY de 2022 tiene un VIERNES 13 | ||
JANUARY de 2023 tiene un VIERNES 13 | ||
OCTOBER de 2023 tiene un VIERNES 13 | ||
SEPTEMBER de 2024 tiene un VIERNES 13 | ||
DECEMBER de 2024 tiene un VIERNES 13 | ||
JUNE de 2025 tiene un VIERNES 13 */ | ||
|
||
val viernes13 = listOf( Pair(5, 2022), Pair(1, 2023), Pair(10, 2023), Pair(9, 2024), Pair(12, 2024), Pair(6, 2025)) | ||
|
||
viernes13.forEach() { | ||
assertEquals(true, hasViernes13(it.first, it.second) ) | ||
|
||
} | ||
|
||
} | ||
|
||
@Test | ||
fun hasNotViernes13(){ | ||
/* Fechas que NO son viernes 13 */ | ||
val viernes13 = listOf( Pair(1, 2022), Pair(2, 2023), Pair(11, 2023), Pair(6, 2024)) | ||
|
||
viernes13.forEach() { | ||
assertNotEquals(true, hasViernes13(it.first, it.second) ) | ||
|
||
} | ||
} | ||
} |