Skip to content

Commit 96787c4

Browse files
committed
renamed methods according to naming conventions
1 parent d10aab5 commit 96787c4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

mesh/src/test/java/mesh/MeshCopyTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ void copyShouldDeepCopySurfaceLayer_uvList() {
7676
}
7777

7878
@Test
79-
void copyShouldDeepCopySurfaceLayer_faceUvIndices() {
79+
void copyShouldDeepCopySurfaceLayerFaceUvIndices() {
8080
Mesh3D mesh = createSimpleTriangle();
8181
mesh.getSurfaceLayer().setFaceUVIndices(0, new int[] {0, 1, 2});
8282

mesh/src/test/java/mesh/SurfaceLayerCopyTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
public class SurfaceLayerCopyTest {
1010

1111
@Test
12-
void copy_shouldDeepCopyUVs() {
12+
void copyShouldDeepCopyUVs() {
1313
SurfaceLayer surface = new SurfaceLayer();
1414
surface.addUV(0.5f, 0.5f);
1515

@@ -21,7 +21,7 @@ void copy_shouldDeepCopyUVs() {
2121
}
2222

2323
@Test
24-
void copy_shouldDeepCopyFaceUVIndices() {
24+
void copyShouldDeepCopyFaceUVIndices() {
2525
SurfaceLayer surface = new SurfaceLayer();
2626
surface.addUV(0, 0);
2727
surface.setFaceUVIndices(0, new int[] {0});

0 commit comments

Comments
 (0)