Skip to content

Instantly share code, notes, and snippets.

@aysesenses
Created September 27, 2021 19:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aysesenses/90484a66419d6693c31c5f4922f3c4ba to your computer and use it in GitHub Desktop.
Save aysesenses/90484a66419d6693c31c5f4922f3c4ba to your computer and use it in GitHub Desktop.
class ExampleUnitTest {
// Her test @Test ile belirtilir (bu bir Junit açıklamasıdır)
@Test
fun addition_isCorrect() {
//Burada 4'ün 2+2 ile aynı olduğunu kontrol ediliyor
assertEquals(4, 2 + 2)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment