diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml
index d99bd94..39ad784 100644
--- a/.idea/codeStyles/Project.xml
+++ b/.idea/codeStyles/Project.xml
@@ -1,8 +1,5 @@
-
-
-
@@ -12,6 +9,113 @@
+
+
+
+
+
+
+ xmlns:android
+
+ ^$
+
+
+
+
+
+
+
+
+ xmlns:.*
+
+ ^$
+
+
+ BY_NAME
+
+
+
+
+
+
+ .*:id
+
+ http://schemas.android.com/apk/res/android
+
+
+
+
+
+
+
+
+ .*:name
+
+ http://schemas.android.com/apk/res/android
+
+
+
+
+
+
+
+
+ name
+
+ ^$
+
+
+
+
+
+
+
+
+ style
+
+ ^$
+
+
+
+
+
+
+
+
+ .*
+
+ ^$
+
+
+ BY_NAME
+
+
+
+
+
+
+ .*
+
+ http://schemas.android.com/apk/res/android
+
+
+ ANDROID_ATTRIBUTE_ORDER
+
+
+
+
+
+
+ .*
+
+ .*
+
+
+ BY_NAME
+
+
+
+
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
index 8d1b9aa..4d24e5b 100644
--- a/.idea/gradle.xml
+++ b/.idea/gradle.xml
@@ -1,8 +1,11 @@
+
diff --git a/.idea/misc.xml b/.idea/misc.xml
index 703e5d4..8a8f75b 100644
--- a/.idea/misc.xml
+++ b/.idea/misc.xml
@@ -5,7 +5,7 @@
-
+
diff --git a/app/src/main/res/layout/single_order_item.xml b/app/src/main/res/layout/single_order_item.xml
index fb63b5c..fec5cee 100644
--- a/app/src/main/res/layout/single_order_item.xml
+++ b/app/src/main/res/layout/single_order_item.xml
@@ -10,7 +10,7 @@
android:layout_marginTop="16dp"
>
-
-
+
Testing documentation
- */
-public class ExampleUnitTest {
- @Test
- public void addition_isCorrect() {
- assertEquals(4, 2 + 2);
- }
-}
\ No newline at end of file
diff --git a/woodroid/src/test/java/me/gilo/woodroid/ExampleUnitTest.kt b/woodroid/src/test/java/me/gilo/woodroid/ExampleUnitTest.kt
new file mode 100644
index 0000000..f468fba
--- /dev/null
+++ b/woodroid/src/test/java/me/gilo/woodroid/ExampleUnitTest.kt
@@ -0,0 +1,18 @@
+package me.gilo.woodroid
+
+import org.junit.Test
+
+import org.junit.Assert.*
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * @see [Testing documentation](http://d.android.com/tools/testing)
+ */
+class ExampleUnitTest {
+ @Test
+ fun addition_isCorrect() {
+ assertEquals(4, (2 + 2).toLong())
+ }
+}
+