- Add a unit test for CopyService. - Make some changes to StubProvider to make it more configurable, for testing. Change-Id: I3d726099feaf6b7a3fdd40bf2449f4ee3e848d77
18 lines
388 B
Makefile
18 lines
388 B
Makefile
|
|
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_SRC_FILES := $(call all-java-files-under, src)
|
|
|
|
LOCAL_JAVA_LIBRARIES := android.test.runner
|
|
LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4 mockito-target guava
|
|
|
|
LOCAL_PACKAGE_NAME := DocumentsUITests
|
|
LOCAL_INSTRUMENTATION_FOR := DocumentsUI
|
|
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
include $(BUILD_PACKAGE)
|