Al Sutton 196d275292 Add tests to WallpaperBackupAgent
We're currently seeing the WallpaperBackupAgent generate data
for a backup even when nothing has changed. In order to verify
that any fix resolves this we should put appropriate tests in
place which first verify the issue and then break and need
updating when the issue is resolved.

This CL adds some initial tests to give us the test infrastructure
we can use to create the null-diff tests.

Test: atest WallpaperBackupAgentTests
Bug: 140995339
Change-Id: I188e39f9a032b0b9be01faa77597a8698d9e4c57
2019-11-12 15:07:36 +00:00

14 lines
529 B
XML

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.wallpaperbackup.tests">
<application android:label="WallpaperBackup Tests">
<uses-library android:name="android.test.runner" />
</application>
<instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
android:targetPackage="com.android.wallpaperbackup.tests"
android:label="WallpaperBackup Tests"/>
</manifest>