-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
119 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
Obligatorisk1/KoeT/Test/no/hvl/dat102/kjedet/KjedetKoeTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
package no.hvl.dat102.kjedet; | ||
|
||
import no.hvl.dat102.adt.KoeADT; | ||
import no.hvl.dat102.adt.KoeADTTest; | ||
|
||
public class KjedetKoeTest extends KoeADTTest{ | ||
|
||
@Override | ||
protected KoeADT<Integer> reset() { | ||
return new KjedetKoe<Integer>(); | ||
} | ||
} |
7 changes: 6 additions & 1 deletion
7
Obligatorisk1/KoeT/Test/no/hvl/dat102/tabell/TabellKoeTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
package no.hvl.dat102.tabell; | ||
|
||
import no.hvl.dat102.adt.KoeADT; | ||
import no.hvl.dat102.adt.KoeADTTest; | ||
|
||
public class TabellKoeTest extends KoeADTTest{ | ||
|
||
public class TabellKoeTest extends KoeADTTest{ | ||
@Override | ||
protected KoeADT<Integer> reset() { | ||
return new TabellSirkulaerKoe<Integer>(); | ||
} | ||
} |