Initialize LBJ Receiver project with basic structure and configuration files

This commit is contained in:
Nedifinita
2025-05-18 17:59:08 +08:00
commit 65eac4ec31
66 changed files with 6461 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
package receiver.lbj
import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
import org.junit.Test
import org.junit.runner.RunWith
import org.junit.Assert.*
@RunWith(AndroidJUnit4::class)
class ExampleInstrumentedTest {
@Test
fun useAppContext() {
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
assertEquals("receiver.lbj", appContext.packageName)
}
}