summaryrefslogtreecommitdiffstats
path: root/catalog-dao/src/test/java/org/openecomp/sdc/be/dao/model/FetchContext.java
blob: c7ed9bc087ead3699426da1b09d37ce656bb4bde (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 FetchContext {
	@Test
	public void shouldHaveValidGettersAndSetters(){
		assertThat(FetchContext.class, hasValidGettersAndSetters());
	}
}