Commit d2d53282 authored by Arthur POIGNONNEC's avatar Arthur POIGNONNEC

[FIX] Correction des erreurs de build

parent 41a1b55f
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="distributionType" value="LOCAL" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleHome" value="/usr/share/gradle" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
</set>
</option>
<option name="useAutoImport" value="true" />
<option name="useQualifiedModuleNames" value="true" />
</GradleProjectSettings>
</option>
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" languageLevel="JDK_11" project-jdk-name="11" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/classes" />
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/geometry.iml" filepath="$PROJECT_DIR$/geometry.iml" />
</modules>
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="" vcs="Git" />
</component>
</project>
\ No newline at end of file
package main;
public class Block { public class Block {
// VARIABLES // VARIABLES
......
package main;
public class Edge extends Point{ public class Edge extends Point{
// VARIABLES // VARIABLES
......
package main;
public class Point { public class Point {
private double x; private double x;
......
package main;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
......
package main;
public class Ray { public class Ray {
} }
package main;
public class Segment { public class Segment {
// VARIABLES // VARIABLES
......
package main;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; import java.util.List;
......
package tests;
import main.Edge;
import main.Point;
import org.junit.Test; import org.junit.Test;
public class TestEdge { public class TestEdge {
......
package tests;
import org.junit.Test; import org.junit.Test;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import main.Point;
public class TestPoint { public class TestPoint {
......
package tests;
import main.Point;
import org.junit.Test; import org.junit.Test;
import main.Polygon;
public class TestPolygon { public class TestPolygon {
......
package tests;
import org.junit.Test; import org.junit.Test;
public class TestRay { public class TestRay {
......
package tests;
import main.Edge;
import main.Segment;
import main.View;
import org.junit.Before; import org.junit.Before;
import org.junit.Test; import org.junit.Test;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
public class TestView { public class TestView {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment