Tesis 1.0.0
Loading...
Searching...
No Matches
ExampleInstrumentedTest.java
Go to the documentation of this file.
1package com.example.food_front;
2
3import android.content.Context;
4
5import androidx.test.platform.app.InstrumentationRegistry;
6import androidx.test.ext.junit.runners.AndroidJUnit4;
7
8import org.junit.Test;
9import org.junit.runner.RunWith;
10
11import static org.junit.Assert.*;
12
18@RunWith(AndroidJUnit4.class)
20 @Test
21 public void useAppContext() {
22 // Context of the app under test.
23 Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
24 assertEquals("com.example.food_front", appContext.getPackageName());
25 }
26}