mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-09 03:59:38 +08:00
Add tests for PythagoreanTriple (#3070)
This commit is contained in:
@ -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));
|
||||||
|
}
|
||||||
|
}
|
Reference in New Issue
Block a user