aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/model/GetMultipleDataResultTest.java
blob: 843e39899acaeed1c8e67f6b8c028305c3c6c50c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package org.openecomp.sdc.be.dao.model;

import org.junit.Test;

import static com.google.code.beanmatchers.BeanMatchers.hasValidGettersAndSetters;
import static org.hamcrest.MatcherAssert.assertThat;

public class GetMultipleDataResultTest {
	
	@Test
	public void testCtor() throws Exception {
		new GetMultipleDataResult<>(new String [1], new Object[1]);
		new GetMultipleDataResult<>(new String [1], new String [1], 0L, 0L, 1, 1);
	}
  
	@Test
	public void shouldHaveValidGettersAndSetters(){
		assertThat(GetMultipleDataResultTest.class, hasValidGettersAndSetters());
	}
}