forked from TheAlgorithms/Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVolumeTest.java
More file actions
39 lines (26 loc) · 1020 Bytes
/
VolumeTest.java
File metadata and controls
39 lines (26 loc) · 1020 Bytes
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.assertEquals;
import org.junit.jupiter.api.Test;
public class VolumeTest {
@Test
public void volume() {
/* test cube */
assertEquals(343.0, Volume.volumeCube(7));
/* test cuboid */
assertEquals(70.0, Volume.volumeCuboid(2, 5, 7));
/* test sphere */
assertEquals(1436.7550402417319, Volume.volumeSphere(7));
/* test cylinder */
assertEquals(197.92033717615698, Volume.volumeCylinder(3, 7));
/* test hemisphere */
assertEquals(718.3775201208659, Volume.volumeHemisphere(7));
/* test cone */
assertEquals(65.97344572538566, Volume.volumeCone(3, 7));
/* test prism */
assertEquals(20.0, Volume.volumePrism(10, 2));
/* test pyramid */
assertEquals(10.0, Volume.volumePyramid(10, 3));
/* test frustum */
assertEquals(359.188760060433, Volume.volumeFrustumOfCone(3, 5, 7));
}
}