blob: 24bfac2fa33412c18bf35249d1aa6592daa3e9b3 [file] [log] [blame]
package org.eclipse.mdm.api.dflt.model;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.when;
import org.eclipse.mdm.api.base.model.Channel;
import org.junit.Test;
public class EntityFactoryTest {
@Test
public void createBaseEntities() {
EntityFactory entityFactory = mock(EntityFactory.class);
when(entityFactory.createBaseEntity(any(), any())).thenCallRealMethod();
// The Entities below were chosen as representatives of their respective
// packages since their constructors don't do anything with the Core instances
// passed to them, so a null pointer is sufficient for this test.
// Channel class is in package org.eclipse.mdm.api.base.model
// (BaseEntityFactory's package):
assertThat(entityFactory.createBaseEntity(Channel.class, null)).isInstanceOf(Channel.class);
// CatalogSensor class is in package org.eclipse.mdm.api.dflt.model
// (EntityFactory's package):
assertThat(entityFactory.createBaseEntity(CatalogSensor.class, null)).isInstanceOf(CatalogSensor.class);
}
}