Lines Matching refs:testProfile
252 for (const auto& testProfile : testProfiles) { in TEST_P() local
255 cert.encodedCertificate = testProfile.readerCertificate; in TEST_P()
256 int64_t secureUserId = testProfile.userAuthenticationRequired ? 66 : 0; in TEST_P()
258 testProfile.id, cert, testProfile.userAuthenticationRequired, in TEST_P()
259 testProfile.timeoutMillis, secureUserId, &profile); in TEST_P()
267 << "test profile id = " << testProfile.id << endl; in TEST_P()
269 ASSERT_EQ(testProfile.id, profile.id); in TEST_P()
270 ASSERT_EQ(testProfile.readerCertificate, profile.readerCertificate.encodedCertificate); in TEST_P()
271 ASSERT_EQ(testProfile.userAuthenticationRequired, profile.userAuthenticationRequired); in TEST_P()
272 ASSERT_EQ(testProfile.timeoutMillis, profile.timeoutMillis); in TEST_P()
278 << ". Test profile id = " << testProfile.id in TEST_P()
279 << ", timeout=" << testProfile.timeoutMillis << endl; in TEST_P()