1
0

some tests

This commit is contained in:
Rémi Heredero 2023-05-05 16:26:16 +02:00
parent 3b1d829bbf
commit 184303ffdb
5 changed files with 12 additions and 23 deletions

3
.gitignore vendored
View File

@ -3,5 +3,4 @@
/.idea/jarRepositories.xml
/.idea/codeStyles
/.idea/*.xml
/target/
# TODO: add your build folder here
/target/

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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);
}
}