assistance with classifying tests

Posted by amateur on Stack Overflow See other posts from Stack Overflow or by amateur
Published on 2012-04-09T21:37:39Z Indexed on 2012/04/09 23:28 UTC
Read the original article Hit count: 237

I have a .net c# library that I have created that I am currently creating some unit tests for. I am at present writing unit tests for a cache provider class that I have created. Being new to writing unit tests I have 2 questions These being:

  1. My cache provider class is the abstraction layer to my distributed cache - AppFabric. So to test aspects of my cache provider class such as adding to appfabric cache, removing from cache etc involves communicating with appfabric. Therefore the tests to test for such, are they still categorised as unit tests or integration tests?

  2. The above methods I am testing due to interacting with appfabric, I would like to time such methods. If they take longer than a specified benchmark, the tests have failed. Again I ask the question, can this performance benchmark test be classifed as a unit test?

The way I have my tests set up I want to include all unit tests together, integration tests together etc, therefore I ask these questions that I would appreciate input on.

© Stack Overflow or respective owner

Related posts about c#

Related posts about .NET