From 7dfdb4b0873192e450263098fd84c75415b91083 Mon Sep 17 00:00:00 2001 From: Laurent Pierron <Laurent.Pierron@inria.fr> Date: Thu, 26 Jan 2023 19:24:41 +0100 Subject: [PATCH] Adding .idea to .gitignore --- .gitignore | 1 + src/test/java/fr/nancy/iut/SphereTest.java | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 452406a..b541bca 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ target .DS_Store .vscode +.idea diff --git a/src/test/java/fr/nancy/iut/SphereTest.java b/src/test/java/fr/nancy/iut/SphereTest.java index 3342054..2428686 100644 --- a/src/test/java/fr/nancy/iut/SphereTest.java +++ b/src/test/java/fr/nancy/iut/SphereTest.java @@ -7,9 +7,9 @@ import javax.vecmath.Point3d; /** * Created by dparsons on 12/08/15. */ -public class SphereTest { +class SphereTest { @Test - public void testComputeVolume() throws Exception { + void testComputeVolume() throws Exception { Sphere mySphere = new Sphere(1.5); assertEquals(14.137166941154069, mySphere.computeVolume(), 0.0); } -- GitLab