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

3
.idea/dictionaries/h_mal.xml generated Normal file
View File

@@ -0,0 +1,3 @@
<component name="ProjectDictionaryState">
<dictionary name="h_mal" />
</component>

3
.idea/misc.xml generated
View File

@@ -8,9 +8,6 @@
<component name="Kotlin2JsCompilerArguments">
<option name="sourceMapEmbedSources" />
</component>
<component name="ProjectDictionaryState">
<dictionary name="h_mal" />
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_7" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>

12
.idea/runConfigurations.xml generated Normal file
View File

@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
</set>
</option>
</component>
</project>

6
.idea/vcs.xml generated Normal file
View File

@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

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() {
}
}