use of com.inova8.intelligentgraph.model.Resource in project com.inova8.intelligentgraph by peterjohnlawrence.
the class Remote_PathQL_GetFactTests method test_23.
/**
* Test 23.
*/
@Test
@Order(23)
void test_23() {
try {
Thing $this = source.getThing(iri("http://inova8.com/calc2graph/id/BatteryLimit1"), null);
Resource result = $this.getFact(":Location@:appearsOn#[:location.Map id:Calc2Graph2 ]");
assertEquals("http://inova8.com/calc2graph/id/Location_BL1_2", result.stringValue());
} catch (Exception e) {
e.printStackTrace();
}
}
use of com.inova8.intelligentgraph.model.Resource in project com.inova8.intelligentgraph by peterjohnlawrence.
the class Remote_PathQL_GetFactTests method test_7.
/**
* Test 7.
*/
@Test
@Order(7)
void test_7() {
try {
Thing $this = source.getThing(iri("http://inova8.com/calc2graph/id/Unit1"), null);
Resource result = $this.getFact("<http://inova8.com/calc2graph/def/massThroughput>");
assertEquals("-0.06740710663143545", result.stringValue());
} catch (Exception e) {
fail();
e.printStackTrace();
}
}
use of com.inova8.intelligentgraph.model.Resource in project com.inova8.intelligentgraph by peterjohnlawrence.
the class Remote_PathQL_GetFactTests method test_11.
/**
* Test 11.
*/
@Test
@Order(11)
void test_11() {
try {
Thing $this = source.getThing(iri("http://inova8.com/calc2graph/id/BatteryLimit1"), null);
Resource result = $this.getFact(":lat");
assertEquals("400", result.stringValue());
} catch (Exception e) {
fail();
e.printStackTrace();
}
}
use of com.inova8.intelligentgraph.model.Resource in project com.inova8.intelligentgraph by peterjohnlawrence.
the class Remote_PathQL_GetFactTests method test_21.
/**
* Test 21.
*/
@Test
@Order(21)
void test_21() {
try {
Thing $this = source.getThing(iri("http://inova8.com/calc2graph/id/BatteryLimit1"), null);
Resource result = $this.getFact(":Location@:appearsOn#[:location.Map id:Calc2Graph1 ]/:long");
assertEquals("501", result.stringValue());
} catch (Exception e) {
e.printStackTrace();
}
}
use of com.inova8.intelligentgraph.model.Resource in project com.inova8.intelligentgraph by peterjohnlawrence.
the class Example2_Tests method example2_4.
/**
* Example 2 4.
*/
@Test
@Order(4)
void example2_4() {
try {
Thing person = source.getThing(":Person");
Resource averagebmi = person.getFact(":averageBMI");
assertEquals("21.523052847377123", averagebmi.stringValue());
} catch (Exception e) {
assertEquals("", e.getCause().getMessage());
}
}
Aggregations