Remove unused imports

This commit is contained in:
vsuryakumar
2023-06-03 19:12:32 +05:30
parent a1f41db68b
commit eb89cf5842
7 changed files with 5 additions and 20 deletions

View File

@@ -1,13 +1,11 @@
package com.example.hpos package com.example.hpos
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4 import androidx.test.ext.junit.runners.AndroidJUnit4
import androidx.test.platform.app.InstrumentationRegistry
import org.junit.Assert.*
import org.junit.Test import org.junit.Test
import org.junit.runner.RunWith import org.junit.runner.RunWith
import org.junit.Assert.*
/** /**
* Instrumented test, which will execute on an Android device. * Instrumented test, which will execute on an Android device.
* *

View File

@@ -1,12 +1,7 @@
package com.example.hpos.domain package com.example.hpos.domain
import android.util.Log
import com.example.hpos.data.LocalFileRepository import com.example.hpos.data.LocalFileRepository
import com.example.hpos.data.model.CalculationVariableForTest import com.example.hpos.data.model.CalculationVariableForTest
import com.opencsv.CSVWriter
import java.io.File
import java.io.FileOutputStream
import java.io.FileWriter
class SaveRawDataTest(private val localFileRepository: LocalFileRepository) { class SaveRawDataTest(private val localFileRepository: LocalFileRepository) {

View File

@@ -2,7 +2,6 @@ package com.example.hpos.presentation.dashboard.register
import android.content.ActivityNotFoundException import android.content.ActivityNotFoundException
import android.content.Intent import android.content.Intent
import android.content.pm.PackageManager
import android.net.Uri import android.net.Uri
import android.os.Bundle import android.os.Bundle
import android.view.LayoutInflater import android.view.LayoutInflater

View File

@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android" <layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto">
xmlns:tools="http://schemas.android.com/tools">
<androidx.constraintlayout.widget.ConstraintLayout <androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent" android:layout_width="match_parent"

View File

@@ -1,9 +1,8 @@
package com.example.hpos package com.example.hpos
import org.junit.Assert.assertEquals
import org.junit.Test import org.junit.Test
import org.junit.Assert.*
/** /**
* Example local unit test, which will execute on the development machine (host). * Example local unit test, which will execute on the development machine (host).
* *

View File

@@ -1,8 +1,7 @@
package com.example.hpos package com.example.hpos
import org.junit.Test import org.junit.Test
import java.util.* import java.util.Date
import java.util.concurrent.atomic.AtomicLong
class OtherTests { class OtherTests {

View File

@@ -1,10 +1,6 @@
package com.example.hpos package com.example.hpos
import org.junit.Test
import java.io.File import java.io.File
import java.io.InputStream
import java.util.*
import kotlin.collections.ArrayList
class TestDataGenerator { class TestDataGenerator {