aboutsummaryrefslogtreecommitdiffstats
path: root/asdctool/src/test/java/org/openecomp/sdc/asdctool/migration/dao/MigrationTasksDaoTest.java
blob: a21356637a630222c1593ce7dc1845e86218fef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package org.openecomp.sdc.asdctool.migration.dao;

import org.junit.Test;
import org.openecomp.sdc.be.resources.data.MigrationTaskEntry;

import java.math.BigInteger;

public class MigrationTasksDaoTest {

	private MigrationTasksDao createTestSubject() {
		return new MigrationTasksDao();
	}

	@Test(expected=NullPointerException.class)
	public void testInit() throws Exception {
		MigrationTasksDao testSubject;

		// default test
		testSubject = createTestSubject();
		testSubject.init();
	}

	@Test(expected=NullPointerException.class)
	public void testGetLatestMinorVersion() throws Exception {
		MigrationTasksDao testSubject;
		BigInteger majorVersion = null;
		BigInteger result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.getLatestMinorVersion(majorVersion);
	}

	@Test(expected=NullPointerException.class)
	public void testDeleteAllTasksForVersion() throws Exception {
		MigrationTasksDao testSubject;
		BigInteger majorVersion = null;

		// default test
		testSubject = createTestSubject();
		testSubject.deleteAllTasksForVersion(majorVersion);
	}

	@Test(expected=NullPointerException.class)
	public void testCreateMigrationTask() throws Exception {
		MigrationTasksDao testSubject;
		MigrationTaskEntry migrationTask = null;

		// default test
		testSubject = createTestSubject();
		testSubject.createMigrationTask(migrationTask);
	}
}