summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSasha Levitskiy <sanek@google.com>2014-04-18 11:14:11 -0700
committerSasha Levitskiy <sanek@google.com>2014-04-22 10:50:50 -0700
commit7308284e4e8ad35ae531273afeee124a82f480a8 (patch)
treec34a4d56fb73ab75dceb80c8f6fcfc1cc4cadaf5 /tests
parent32853ed46b08ae4236e90cc565acb81e9a739a93 (diff)
downloadhardware_libhardware-7308284e4e8ad35ae531273afeee124a82f480a8.zip
hardware_libhardware-7308284e4e8ad35ae531273afeee124a82f480a8.tar.gz
hardware_libhardware-7308284e4e8ad35ae531273afeee124a82f480a8.tar.bz2
Hardware: Fingerprint: Move the HAL to an async model, add some vendor requested functionality.
Change-Id: Ib99e3edb99579ac4495918eb57d1022d75dccb57 Signed-off-by: Sasha Levitskiy <sanek@google.com>
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