aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/model/FacetedSearchResult.java
blob: b262decb43d52f317e26bf920845960b52bc4a50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 FacetedSearchResult {
	@Test
	public void shouldHaveValidGettersAndSetters(){
		assertThat(FacetedSearchResult.class, hasValidGettersAndSetters());
	}
}