18 lines
269 B
Java
18 lines
269 B
Java
package semantic;
|
|
|
|
|
|
import org.junit.Assert;
|
|
import org.junit.Test;
|
|
|
|
import semantic.model.SemanticModel;
|
|
|
|
public class TestOntologyInteraction {
|
|
|
|
@Test
|
|
public void createSemanticModel()
|
|
{
|
|
SemanticModel sm = new SemanticModel();
|
|
Assert.assertNotNull(sm);
|
|
}
|
|
|
|
}
|