Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ add_executable(bankid_tests
test_auth.cpp
test_sign.cpp
test_payment.cpp
# test_other_payment.cpp
test_other_payment.cpp
# test_phone_auth.cpp
# test_phone_sign.cpp
# test_collect.cpp
Expand Down Expand Up @@ -128,6 +128,9 @@ set_tests_properties(SignTests PROPERTIES WORKING_DIRECTORY $<TARGET_FILE_DIR:ba
add_test(NAME PaymentTests COMMAND bankid_tests --gtest_filter=PaymentTest.*)
set_tests_properties(PaymentTests PROPERTIES WORKING_DIRECTORY $<TARGET_FILE_DIR:bankid_tests>)

add_test(NAME OtherPaymentTests COMMAND bankid_tests --gtest_filter=OtherPaymentTest.*)
set_tests_properties(OtherPaymentTests PROPERTIES WORKING_DIRECTORY $<TARGET_FILE_DIR:bankid_tests>)

add_test(NAME CancelTests COMMAND bankid_tests --gtest_filter=CancelTest.*)
set_tests_properties(CancelTests PROPERTIES WORKING_DIRECTORY $<TARGET_FILE_DIR:bankid_tests>)

Expand Down
Loading