From 7308284e4e8ad35ae531273afeee124a82f480a8 Mon Sep 17 00:00:00 2001 From: Sasha Levitskiy Date: Fri, 18 Apr 2014 11:14:11 -0700 Subject: Hardware: Fingerprint: Move the HAL to an async model, add some vendor requested functionality. Change-Id: Ib99e3edb99579ac4495918eb57d1022d75dccb57 Signed-off-by: Sasha Levitskiy --- tests/fingerprint/fingerprint_tests.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tests') 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 -- cgit v1.1