Add tests for PythagoreanTriple (#3070)

This commit is contained in:
Phạm Minh Hiếu
2022-06-02 21:21:40 +07:00
committed by GitHub
parent 2bcae52dce
commit 2fb87c37fc

View File

@ -0,0 +1,20 @@
package com.thealgorithms.maths;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class PythagoreanTripleTest {
@Test
public void Testpythagoreantriple(){
assertEquals(true, PythagoreanTriple.isPythagTriple(3,4,5));
assertEquals(true, PythagoreanTriple.isPythagTriple(6,8,10));
assertEquals(true, PythagoreanTriple.isPythagTriple(9,12,15));
assertEquals(true, PythagoreanTriple.isPythagTriple(12,16,20));
assertEquals(true, PythagoreanTriple.isPythagTriple(15,20,25));
assertEquals(true, PythagoreanTriple.isPythagTriple(18,24,30));
assertEquals(false, PythagoreanTriple.isPythagTriple(5,20,30));
assertEquals(false, PythagoreanTriple.isPythagTriple(6,8,100));
assertEquals(false, PythagoreanTriple.isPythagTriple(-2,-2,2));
}
}