File tree Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 33import static org .junit .Assert .assertTrue ;
44import static org .junit .jupiter .api .Assertions .assertEquals ;
55
6- import org .junit .jupiter . api . Test ;
6+ import org .junit .Test ;
77
88import mesh .Mesh3D ;
99import mesh .creator .platonic .IcosahedronCreator ;
Original file line number Diff line number Diff line change 22
33import static org .junit .Assert .assertTrue ;
44
5- import org .junit .jupiter . api . Test ;
5+ import org .junit .Test ;
66
77import mesh .Mesh3D ;
88import mesh .creator .special .VariableCylinderCreator ;
Original file line number Diff line number Diff line change 11package mesh .creator .archimedian ;
22
33import static org .junit .Assert .assertArrayEquals ;
4- import static org .junit .Assert .assertTrue ;
54import static org .junit .jupiter .api .Assertions .assertEquals ;
65
7- import org .junit .jupiter . api . Test ;
6+ import org .junit .Test ;
87
98import mesh .Mesh3D ;
109
1110public class ArchimedianSolidCreatorTest {
1211
13- @ Test
14- public void testNull () {
15- Mesh3D actualMesh = new ArchimedianSolidCreator (null ).create ();
16- assertTrue (actualMesh .vertices .isEmpty ());
17- assertTrue (actualMesh .faces .isEmpty ());
18- }
19-
2012 @ Test
2113 public void testIcosidodecahedronCreatorVertices () {
2214 ArchimedianSolid type = ArchimedianSolid .ICOSIDODECAHEDRON ;
You can’t perform that action at this time.
0 commit comments