Skip to content

Commit

Permalink
JUnit5, oppdatert
Browse files Browse the repository at this point in the history
  • Loading branch information
hbs committed Jan 27, 2020
1 parent d5204d2 commit c135bbe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
8 changes: 6 additions & 2 deletions Kalkulator/.classpath
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
<classpath>
<classpathentry kind="src" path="src"/>
<classpathentry kind="src" path="Test"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/>
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="bin"/>
</classpath>
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
package no.hib.dat102;
package no.hvl.dat102;

import static org.junit.Assert.*;

import org.junit.Test;

import no.hvl.dat102.Kalkulator;

public class TestKalkulator {


Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package no.hib.dat102;
package no.hvl.dat102;

public class Kalkulator {

Expand Down

0 comments on commit c135bbe

Please sign in to comment.