]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - tests/org.simantics.db.tests/src/org/simantics/db/tests/api/write/claimLiteral/TestLiteral.java
Added missing org.simantics.db.{tests,testing} plug-ins.
[simantics/platform.git] / tests / org.simantics.db.tests / src / org / simantics / db / tests / api / write / claimLiteral / TestLiteral.java
diff --git a/tests/org.simantics.db.tests/src/org/simantics/db/tests/api/write/claimLiteral/TestLiteral.java b/tests/org.simantics.db.tests/src/org/simantics/db/tests/api/write/claimLiteral/TestLiteral.java
new file mode 100644 (file)
index 0000000..ee7db82
--- /dev/null
@@ -0,0 +1,19 @@
+package org.simantics.db.tests.api.write.claimLiteral;
+
+import java.util.Arrays;
+
+public class TestLiteral {
+
+       int a = 1;
+       double b[] = { 1, 2 };
+
+       public void setA(int a) {
+               this.a = a;
+       }
+       
+       @Override
+       public String toString() {
+               return "TestLiteral " + a + " " + Arrays.toString(b);
+       }
+       
+}