summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSasha Levitskiy <sanek@google.com>2014-04-22 21:35:50 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-04-22 21:35:51 +0000
commit449ebdd70fa8df58b03a9bd38deed2e53cb512a0 (patch)
tree845d0d9e41e8ec3d9fa0f46b2b0df90488e820fd /tests
parent0ab4c96ab8889127955971bbf5c157b7191cd1ea (diff)
parent7308284e4e8ad35ae531273afeee124a82f480a8 (diff)
downloadhardware_libhardware-449ebdd70fa8df58b03a9bd38deed2e53cb512a0.zip
hardware_libhardware-449ebdd70fa8df58b03a9bd38deed2e53cb512a0.tar.gz
hardware_libhardware-449ebdd70fa8df58b03a9bd38deed2e53cb512a0.tar.bz2
Merge "Hardware: Fingerprint: Move the HAL to an async model, add some vendor requested functionality."
Diffstat (limited to 'tests')
-rw-r--r--tests/fingerprint/fingerprint_tests.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/fingerprint/fingerprint_tests.cpp b/tests/fingerprint/fingerprint_tests.cpp
index ad6e1dd..4463751 100644
--- a/tests/fingerprint/fingerprint_tests.cpp
+++ b/tests/fingerprint/fingerprint_tests.cpp
@@ -21,17 +21,17 @@ namespace tests {
TEST_F(FingerprintDevice, isThereEnroll) {
ASSERT_TRUE(NULL != fp_device()->enroll)
- << "Enroll function is not implemented";
+ << "enroll() function is not implemented";
}
TEST_F(FingerprintDevice, isThereRemove) {
ASSERT_TRUE(NULL != fp_device()->remove)
- << "Remove function is not implemented";
+ << "remove() function is not implemented";
}
-TEST_F(FingerprintDevice, isThereMatch) {
- ASSERT_TRUE(NULL != fp_device()->match)
- << "Match function is not implemented";
+TEST_F(FingerprintDevice, isThereSetNotify) {
+ ASSERT_TRUE(NULL != fp_device()->set_notify)
+ << "set_notify() function is not implemented";
}
} // namespace tests