MVVM repository, api, room and unit test classes added

This commit is contained in:
2020-04-15 21:21:37 +01:00
parent f07b922989
commit 5b86cc1f8e
9 changed files with 58 additions and 3 deletions

View File

@@ -0,0 +1,4 @@
package com.example.h_mal.candyspace.data.api
interface ApiClass {
}

View File

@@ -0,0 +1,5 @@
package com.example.h_mal.candyspace.data.repositories
class Repository {
}

View File

@@ -0,0 +1,4 @@
package com.example.h_mal.candyspace.data.room
interface RoomDatabase {
}

View File

@@ -0,0 +1,12 @@
package com.example.h_mal.candyspace.data.repositories
import org.junit.Before
import org.junit.Assert.*
class RepositoryTest {
@Before
fun setUp() {
}
}

View File

@@ -0,0 +1,12 @@
package com.example.h_mal.candyspace.ui.main
import org.junit.Before
import org.junit.Assert.*
class MainViewModelTest {
@Before
fun setUp() {
}
}