mirror of
https://github.com/hmalik144/Candy_Space_tech_test.git
synced 2026-01-31 02:41:44 +00:00
MVVM repository, api, room and unit test classes added
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
package com.example.h_mal.candyspace.data.api
|
||||
|
||||
interface ApiClass {
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
package com.example.h_mal.candyspace.data.repositories
|
||||
|
||||
class Repository {
|
||||
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
package com.example.h_mal.candyspace.data.room
|
||||
|
||||
interface RoomDatabase {
|
||||
}
|
||||
@@ -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() {
|
||||
}
|
||||
}
|
||||
@@ -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() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user