Skip to content

Commit 43d772e

Browse files
committed
fixed tests
1 parent 51b819c commit 43d772e

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

src/test/java/ch/ethz/seb/sps/integrationtests/datalayer/batis/dao/ExamUUID_ID_Test.java

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ public void testExamCreationWithIntegerBasedUUIDs() throws Exception {
4141
null,
4242
null,
4343
0L,
44-
100L);
44+
100L,
45+
null);
4546

4647
// store exam1 with integer based uuid
4748
Result<Exam> saveExam = examDAO.createNew(exam1);
@@ -73,7 +74,8 @@ public void testExamCreationWithIntegerBasedUUIDs() throws Exception {
7374
null,
7475
null,
7576
0L,
76-
100L);
77+
100L,
78+
null);
7779

7880
// store exam2 with integer based uuid
7981
Result<Exam> saveExam2 = examDAO.createNew(exam2);

src/test/java/ch/ethz/seb/sps/repltests/ReplTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,11 @@ public void testJSONCriatorWithNoneProp() throws JsonMappingException, JsonProce
145145
"Exam{id=null, uuid='null', name='Demo Quiz 10 (MOCKUP)', description='Starts in a minute and ends after five minutes', url='http://lms.address.alias/api/', type='BYOD', owner='null', supporter=[], creationTime=null, lastUpdateTime=null, terminationTime=null, startTime=1695884353000, endTime=1695884653000, deletionTime=null, entityPrivileges=null}",
146146
exam.toString());
147147
}
148+
149+
@Test
150+
public void CurrentT() {
151+
152+
}
148153

149154
// @Test
150155
// public void testSecretKeyGen() throws NoSuchAlgorithmException, InvalidKeySpecException {

0 commit comments

Comments
 (0)