-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removed start and end time and created specific time variables for di…
…fferent package types
- Loading branch information
Showing
9 changed files
with
137 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
pace-data/src/test/java/edu/colorado/cires/pace/data/object/AudioPackageTest.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package edu.colorado.cires.pace.data.object; | ||
|
||
import edu.colorado.cires.pace.data.object.dataset.audio.AudioPackage; | ||
|
||
public class AudioPackageTest extends PackageTest<AudioPackage> { | ||
|
||
@Override | ||
protected AudioPackage createObject() { | ||
return AudioPackage.builder().build(); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
pace-data/src/test/java/edu/colorado/cires/pace/data/object/CPODPackageTest.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package edu.colorado.cires.pace.data.object; | ||
|
||
import edu.colorado.cires.pace.data.object.dataset.audio.CPODPackage; | ||
|
||
public class CPODPackageTest extends PackageTest<CPODPackage> { | ||
|
||
@Override | ||
protected CPODPackage createObject() { | ||
return CPODPackage.builder().build(); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
pace-data/src/test/java/edu/colorado/cires/pace/data/object/DetectionsPackageTest.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package edu.colorado.cires.pace.data.object; | ||
|
||
import edu.colorado.cires.pace.data.object.dataset.detections.DetectionsPackage; | ||
|
||
public class DetectionsPackageTest extends PackageTest<DetectionsPackage> { | ||
|
||
@Override | ||
protected DetectionsPackage createObject() { | ||
return DetectionsPackage.builder().build(); | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
pace-data/src/test/java/edu/colorado/cires/pace/data/object/PackageTest.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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package edu.colorado.cires.pace.data.object; | ||
|
||
import edu.colorado.cires.pace.data.ObjectWithUniqueFieldTest; | ||
import edu.colorado.cires.pace.data.object.dataset.base.Package; | ||
|
||
public abstract class PackageTest<P extends Package> extends ObjectWithUniqueFieldTest<P> { | ||
|
||
} |
11 changes: 11 additions & 0 deletions
11
pace-data/src/test/java/edu/colorado/cires/pace/data/object/SoundClipsPackageTest.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package edu.colorado.cires.pace.data.object; | ||
|
||
import edu.colorado.cires.pace.data.object.dataset.soundClips.SoundClipsPackage; | ||
|
||
public class SoundClipsPackageTest extends PackageTest<SoundClipsPackage> { | ||
|
||
@Override | ||
protected SoundClipsPackage createObject() { | ||
return SoundClipsPackage.builder().build(); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
...-data/src/test/java/edu/colorado/cires/pace/data/object/SoundLevelMetricsPackageTest.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package edu.colorado.cires.pace.data.object; | ||
|
||
import edu.colorado.cires.pace.data.object.dataset.soundLevelMetrics.SoundLevelMetricsPackage; | ||
|
||
public class SoundLevelMetricsPackageTest extends PackageTest<SoundLevelMetricsPackage> { | ||
|
||
@Override | ||
protected SoundLevelMetricsPackage createObject() { | ||
return SoundLevelMetricsPackage.builder().build(); | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
pace-data/src/test/java/edu/colorado/cires/pace/data/object/SoundPropagationModelsTest.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package edu.colorado.cires.pace.data.object; | ||
|
||
import edu.colorado.cires.pace.data.object.dataset.soundPropagationModels.SoundPropagationModelsPackage; | ||
|
||
public class SoundPropagationModelsTest extends PackageTest<SoundPropagationModelsPackage> { | ||
|
||
@Override | ||
protected SoundPropagationModelsPackage createObject() { | ||
return SoundPropagationModelsPackage.builder().build(); | ||
} | ||
} |
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
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