Skip to content

Instantly share code, notes, and snippets.

@SDiamante13
Created July 27, 2022 20:44
Show Gist options
  • Select an option

  • Save SDiamante13/ac587b0a8c9d7af1f610205d5e9dc7f0 to your computer and use it in GitHub Desktop.

Select an option

Save SDiamante13/ac587b0a8c9d7af1f610205d5e9dc7f0 to your computer and use it in GitHub Desktop.
Leap Year Kata start: AssertJ failing test.
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(false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment