some tests
This commit is contained in:
parent
3b1d829bbf
commit
184303ffdb
3
.gitignore
vendored
3
.gitignore
vendored
@ -3,5 +3,4 @@
|
||||
/.idea/jarRepositories.xml
|
||||
/.idea/codeStyles
|
||||
/.idea/*.xml
|
||||
/target/
|
||||
# TODO: add your build folder here
|
||||
/target/
|
@ -22,7 +22,7 @@ public class DatabaseConnector implements DataPointListener {
|
||||
}
|
||||
|
||||
private void pushToDatabase(DataPoint dp){
|
||||
System.out.println("To Database: " + dp.toString());
|
||||
System.out.println(dp.toString() + " -> Database");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -23,13 +23,8 @@ public class FieldConnector implements DataPointListener {
|
||||
|
||||
}
|
||||
|
||||
public void uselessTest(){
|
||||
FloatDataPoint dp = new FloatDataPoint("Voltage", false);
|
||||
dp.setValue(5);
|
||||
}
|
||||
|
||||
private void pushToField(DataPoint dp){
|
||||
System.out.println("To Field: " + dp.toString());
|
||||
System.out.println(dp.toString() + " -> Field");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -21,7 +21,7 @@ public class WebConnector implements DataPointListener {
|
||||
}
|
||||
|
||||
private void pushToWeb(DataPoint dp){
|
||||
System.out.println("To Web: " + dp.toString());
|
||||
System.out.println(dp.toString() + " -> Web");
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -1,22 +1,17 @@
|
||||
import ch.hevs.isi.core.BooleanDataPoint;
|
||||
import ch.hevs.isi.core.FloatDataPoint;
|
||||
import ch.hevs.isi.field.FieldConnector;
|
||||
|
||||
public class Core {
|
||||
public static void main(String[] args) {
|
||||
/*
|
||||
BooleanDataPoint bDp = new BooleanDataPoint("foo", true);
|
||||
FloatDataPoint floatDp = new FloatDataPoint("bar", true);
|
||||
System.out.println(bDp.toString());
|
||||
System.out.println(floatDp.toString());
|
||||
bDp.setValue(true);;
|
||||
floatDp.setValue(42);
|
||||
System.out.println(bDp.toString());
|
||||
System.out.println(floatDp.toString());
|
||||
*/
|
||||
|
||||
FieldConnector fc;
|
||||
// TODO some test
|
||||
BooleanDataPoint bDp = new BooleanDataPoint("foo", true);
|
||||
new FloatDataPoint("bar", true).setValue(42);
|
||||
bDp.setValue(true);
|
||||
|
||||
|
||||
FloatDataPoint v = new FloatDataPoint("Voltage", false);
|
||||
v.setValue(5);
|
||||
v.setValue(3.3f);
|
||||
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user