-
-
Save SDiamante13/157105d308aaa06c209119dc2204d15b to your computer and use it in GitHub Desktop.
Leap Year Kata start: AssertJ passing test.
This file contains hidden or 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
| package tech.pathtoprogramming.tdd; | |
| import org.assertj.core.api.Assertions; | |
| import org.junit.jupiter.api.Test; | |
| class AYearShould { | |
| @Test | |
| void failingTest() { | |
| Assertions.assertThat(true).isEqualTo(true); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment