testing classes in vs2008

  • Thread starter Thread starter Andy B.
  • Start date Start date
A

Andy B.

Is there a way to easily test the functionality/features built into a class?
i.e. see if a property or method works without having to create a client
program to test it with? These classes are in a dll project.
 
Is there a way to easily test the functionality/features built into a class?
i.e. see if a property or method works without having to create a client
program to test it with? These classes are in a dll project.

It's call Unit testing and is builtin to VS2008.
 
It's call Unit testing and is builtin to VS2008.

Well, when I say builtin, I don't mean automatic. You still have to
create a Unit Test project and write a test class for each class you
want to test.
 
Haven't the first clue how to even do that.


It's call Unit testing and is builtin to VS2008.

Well, when I say builtin, I don't mean automatic. You still have to
create a Unit Test project and write a test class for each class you
want to test.
 
Back
Top