aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/neo4j/filters/MatchFilterTest.java
blob: 529f642fb23006d33b73449187dfb2ad2cb75602 (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
package org.openecomp.sdc.be.dao.neo4j.filters;

import java.util.Map;

import javax.annotation.Generated;

import org.junit.Test;


public class MatchFilterTest {

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

	
	@Test
	public void testGetProperties() throws Exception {
		MatchFilter testSubject;
		Map<String, Object> result;

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

	
	@Test
	public void testSetProperties() throws Exception {
		MatchFilter testSubject;
		Map<String, Object> properties = null;

		// default test
		testSubject = createTestSubject();
		testSubject.setProperties(properties);
	}

	
	@Test
	public void testAddToMatch() throws Exception {
		MatchFilter testSubject;
		String propName = "";
		Object value = null;
		MatchFilter result;

		// default test
		testSubject = createTestSubject();
		result = testSubject.addToMatch(propName, value);
	}
}