Migrate frameworks/base/tests/net/ to androidx.test

Test: atest FrameworksNetTests
Change-Id: Iaa59d606f5e1678cc5aaca9ed37e184fad894e5d
This commit is contained in:
Brett Chabot
2019-03-04 14:14:56 -08:00
parent a32315e69a
commit 147f6cf341
44 changed files with 252 additions and 235 deletions

View File

@@ -18,12 +18,12 @@ package android.net;
import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import android.support.test.filters.SmallTest;
import android.support.test.runner.AndroidJUnit4;
import androidx.test.filters.SmallTest;
import androidx.test.runner.AndroidJUnit4;
import org.junit.Test;
import org.junit.runner.RunWith;