microsoft / cpp_client_telemetry

1DS C++ SDK
Apache License 2.0
85 stars 48 forks source link

Cleaning leftover test files after test completion #1232

Closed absaroj closed 4 months ago

absaroj commented 4 months ago

Two test files were left out without cleanup after mbu test for ariasdk. Adding change to clean them up.

Fix:

test.ses:

reason for this being left out after mbu test is due to TEST method is being used insteasd of TEST_F which is with fixture responsible for calling the setup and tear down functions of the test class. more info at: link (Opens in new window or tab)

sesfile.ses: this is being left out since the cleanup funcitons are not being called after the setup.