-
Notifications
You must be signed in to change notification settings - Fork 19.7k
/
Copy pathVolumeTest.java
39 lines (26 loc) · 1018 Bytes
/
VolumeTest.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package com.thealgorithms.maths;
import static org.junit.jupiter.api.Assertions.assertTrue;
import org.junit.jupiter.api.Test;
public class VolumeTest {
@Test
public void volume() {
/* test cube */
assertTrue(Volume.volumeCube(7) == 343.0);
/* test cuboid */
assertTrue(Volume.volumeCuboid(2, 5, 7) == 70.0);
/* test sphere */
assertTrue(Volume.volumeSphere(7) == 1436.7550402417319);
/* test cylinder */
assertTrue(Volume.volumeCylinder(3, 7) == 197.92033717615698);
/* test hemisphere */
assertTrue(Volume.volumeHemisphere(7) == 718.3775201208659);
/* test cone */
assertTrue(Volume.volumeCone(3, 7) == 65.97344572538566);
/* test prism */
assertTrue(Volume.volumePrism(10, 2) == 20.0);
/* test pyramid */
assertTrue(Volume.volumePyramid(10, 3) == 10.0);
/* test frustum */
assertTrue(Volume.volumeFrustumOfCone(3, 5, 7) == 359.188760060433);
}
}