-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Development: Execute architecture tests on module basis (#9409)
- Loading branch information
1 parent
21753bc
commit e9aa54c
Showing
77 changed files
with
824 additions
and
148 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
.../de/tum/cit/aet/artemis/assessment/architecture/AssessmentRepositoryArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.assessment.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleRepositoryArchitectureTest; | ||
|
||
class AssessmentRepositoryArchitectureTest extends AbstractModuleRepositoryArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".assessment"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...va/de/tum/cit/aet/artemis/assessment/architecture/AssessmentResourceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.assessment.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleResourceArchitectureTest; | ||
|
||
class AssessmentResourceArchitectureTest extends AbstractModuleResourceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".assessment"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...ava/de/tum/cit/aet/artemis/assessment/architecture/AssessmentServiceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.assessment.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleServiceArchitectureTest; | ||
|
||
class AssessmentServiceArchitectureTest extends AbstractModuleServiceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".assessment"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...est/java/de/tum/cit/aet/artemis/athena/architecture/AthenaRepositoryArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.athena.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleRepositoryArchitectureTest; | ||
|
||
class AthenaRepositoryArchitectureTest extends AbstractModuleRepositoryArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".athena"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/athena/architecture/AthenaResourceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.athena.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleResourceArchitectureTest; | ||
|
||
class AthenaResourceArchitectureTest extends AbstractModuleResourceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".athena"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/athena/architecture/AthenaServiceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.athena.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleServiceArchitectureTest; | ||
|
||
class AthenaServiceArchitectureTest extends AbstractModuleServiceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".athena"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/atlas/architecture/AtlasRepositoryArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.atlas.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleRepositoryArchitectureTest; | ||
|
||
class AtlasRepositoryArchitectureTest extends AbstractModuleRepositoryArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".atlas"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/atlas/architecture/AtlasResourceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.atlas.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleResourceArchitectureTest; | ||
|
||
class AtlasResourceArchitectureTest extends AbstractModuleResourceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".atlas"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/atlas/architecture/AtlasServiceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.atlas.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleServiceArchitectureTest; | ||
|
||
class AtlasServiceArchitectureTest extends AbstractModuleServiceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".atlas"; | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
src/test/java/de/tum/cit/aet/artemis/atlas/architecture/AtlasTestArchitectureTest.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
10 changes: 10 additions & 0 deletions
10
.../de/tum/cit/aet/artemis/buildagent/architecture/BuildAgentRepositoryArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.buildagent.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleRepositoryArchitectureTest; | ||
|
||
class BuildAgentRepositoryArchitectureTest extends AbstractModuleRepositoryArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".buildagent"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...va/de/tum/cit/aet/artemis/buildagent/architecture/BuildAgentResourceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.buildagent.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleResourceArchitectureTest; | ||
|
||
class BuildAgentResourceArchitectureTest extends AbstractModuleResourceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".buildagent"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...ava/de/tum/cit/aet/artemis/buildagent/architecture/BuildAgentServiceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.buildagent.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleServiceArchitectureTest; | ||
|
||
class BuildAgentServiceArchitectureTest extends AbstractModuleServiceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".buildagent"; | ||
} | ||
} |
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
10 changes: 10 additions & 0 deletions
10
...m/cit/aet/artemis/communication/architecture/CommunicationRepositoryArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.communication.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleRepositoryArchitectureTest; | ||
|
||
class CommunicationRepositoryArchitectureTest extends AbstractModuleRepositoryArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".communication"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...tum/cit/aet/artemis/communication/architecture/CommunicationResourceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.communication.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleResourceArchitectureTest; | ||
|
||
class CommunicationResourceArchitectureTest extends AbstractModuleResourceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".communication"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
.../tum/cit/aet/artemis/communication/architecture/CommunicationServiceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.communication.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleServiceArchitectureTest; | ||
|
||
class CommunicationServiceArchitectureTest extends AbstractModuleServiceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".communication"; | ||
} | ||
} |
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
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/core/architecture/CoreRepositoryArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.core.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleRepositoryArchitectureTest; | ||
|
||
class CoreRepositoryArchitectureTest extends AbstractModuleRepositoryArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".core"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/core/architecture/CoreResourceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.core.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleResourceArchitectureTest; | ||
|
||
class CoreResourceArchitectureTest extends AbstractModuleResourceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".core"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/core/architecture/CoreServiceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.core.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleServiceArchitectureTest; | ||
|
||
class CoreServiceArchitectureTest extends AbstractModuleServiceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".core"; | ||
} | ||
} |
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
19 changes: 19 additions & 0 deletions
19
src/test/java/de/tum/cit/aet/artemis/exam/architecture/ExamRepositoryArchitectureTest.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,19 @@ | ||
package de.tum.cit.aet.artemis.exam.architecture; | ||
|
||
import java.util.Set; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleRepositoryArchitectureTest; | ||
|
||
class ExamRepositoryArchitectureTest extends AbstractModuleRepositoryArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".exam"; | ||
} | ||
|
||
// TODO: This method should be removed once all repositories are tested | ||
@Override | ||
protected Set<String> testTransactionalExclusions() { | ||
return Set.of("de.tum.cit.aet.artemis.exam.service.StudentExamService.generateMissingStudentExams(de.tum.cit.aet.artemis.exam.domain.Exam)", | ||
"de.tum.cit.aet.artemis.exam.service.StudentExamService.generateStudentExams(de.tum.cit.aet.artemis.exam.domain.Exam)"); | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/exam/architecture/ExamResourceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.exam.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleResourceArchitectureTest; | ||
|
||
class ExamResourceArchitectureTest extends AbstractModuleResourceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".exam"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/exam/architecture/ExamServiceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.exam.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleServiceArchitectureTest; | ||
|
||
class ExamServiceArchitectureTest extends AbstractModuleServiceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".exam"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...java/de/tum/cit/aet/artemis/exercise/architecture/ExerciseRepositoryArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.exercise.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleRepositoryArchitectureTest; | ||
|
||
class ExerciseRepositoryArchitectureTest extends AbstractModuleRepositoryArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".exercise"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...t/java/de/tum/cit/aet/artemis/exercise/architecture/ExerciseResourceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.exercise.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleResourceArchitectureTest; | ||
|
||
class ExerciseResourceArchitectureTest extends AbstractModuleResourceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".exercise"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...st/java/de/tum/cit/aet/artemis/exercise/architecture/ExerciseServiceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.exercise.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleServiceArchitectureTest; | ||
|
||
class ExerciseServiceArchitectureTest extends AbstractModuleServiceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".exercise"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
.../de/tum/cit/aet/artemis/fileupload/architecture/FileUploadRepositoryArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.fileupload.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleRepositoryArchitectureTest; | ||
|
||
class FileUploadRepositoryArchitectureTest extends AbstractModuleRepositoryArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".fileupload"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...va/de/tum/cit/aet/artemis/fileupload/architecture/FileUploadResourceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.fileupload.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleResourceArchitectureTest; | ||
|
||
class FileUploadResourceArchitectureTest extends AbstractModuleResourceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".fileupload"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
...ava/de/tum/cit/aet/artemis/fileupload/architecture/FileUploadServiceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.fileupload.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleServiceArchitectureTest; | ||
|
||
class FileUploadServiceArchitectureTest extends AbstractModuleServiceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".fileupload"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/iris/architecture/IrisRepositoryArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.iris.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleRepositoryArchitectureTest; | ||
|
||
class IrisRepositoryArchitectureTest extends AbstractModuleRepositoryArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".iris"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/iris/architecture/IrisResourceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.iris.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleResourceArchitectureTest; | ||
|
||
class IrisResourceArchitectureTest extends AbstractModuleResourceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".iris"; | ||
} | ||
} |
10 changes: 10 additions & 0 deletions
10
src/test/java/de/tum/cit/aet/artemis/iris/architecture/IrisServiceArchitectureTest.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,10 @@ | ||
package de.tum.cit.aet.artemis.iris.architecture; | ||
|
||
import de.tum.cit.aet.artemis.shared.architecture.module.AbstractModuleServiceArchitectureTest; | ||
|
||
class IrisServiceArchitectureTest extends AbstractModuleServiceArchitectureTest { | ||
|
||
public String getModulePackage() { | ||
return ARTEMIS_PACKAGE + ".iris"; | ||
} | ||
} |
Oops, something went wrong.