CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Mar 2009
    Posts
    1

    Unit Testing For VC++

    Hello Code guru's,

    Suggest me how you are doing Unit testing for an application which is developed On VC++ 6.0 MFC .

  2. #2
    Join Date
    Feb 2009
    Location
    India
    Posts
    444

    Re: Unit Testing For VC++

    CppUnit is very very good tool.
    You have to write code for your test cases, but it is worth it.

    You first right the test cases, before you write the actual code.
    This will also make you think better in terms of the design of the code.
    «_Superman
    I love work. It gives me something to do between weekends.

    Microsoft MVP (Visual C++)

  3. #3
    Join Date
    Jul 2008
    Posts
    24

    Re: Unit Testing For VC++

    As I know writing correct test case is very important.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured