Dev estimate: 3
Test estimate: 1
Moved from private repository.
Run the service bus unit tests
Actual:
testalpha SB queue and test topics is not deleted after completion of the unit test. (although the length of both the entities is 0 )
Expected:
unit tests to cleanup the entities created.
Louis: This was actually an intended behavior. The test entries are deleted at the start of each test, which is more stable because there isn't a guarantee the test will run to completion and the post-test code will execute. The information that remains after a test can also provide clues about what may have taken place when troubleshooting a test that has failed.
Action: Let's add a clean up at the end of the unit tests.
Dev estimate: 3
Test estimate: 1
Moved from private repository.
Run the service bus unit tests
Actual:
testalpha SB queue and test topics is not deleted after completion of the unit test. (although the length of both the entities is 0 )
Expected:
unit tests to cleanup the entities created.
Louis: This was actually an intended behavior. The test entries are deleted at the start of each test, which is more stable because there isn't a guarantee the test will run to completion and the post-test code will execute. The information that remains after a test can also provide clues about what may have taken place when troubleshooting a test that has failed.
Action: Let's add a clean up at the end of the unit tests.