Код: Выделить всё
@RunWith(AndroidJUnit4.class)
public class OcrHelperInstrumentedTest {
@Test
public void testLoadImageFromFile() throws IOException {
// Load the image from test resources
File file = new File(getClass().getClassLoader().getResource("1.png").getFile());
// Create a Uri from the File*
Uri fileUri = Uri.fromFile(file);
// Use the file Uri with InputImage
InputImage inputImage = InputImage.fromFilePath(ApplicationProvider.getApplicationContext(), fileUri);
// Assert the input image is loaded correctly
assertNotNull(inputImage);
}
Код: Выделить всё
java.io.FileNotFoundException: /file:/data/app/com.example.regiscan.test-VXJWGppk-9KqdmtyGKtCvg==/base.apk!/1.png: open failed: ENOENT (No such file or directory)
Подробнее здесь: https://stackoverflow.com/questions/791 ... ources-dir
Мобильная версия