CSC/ECE 517 Fall 2009/wiki1a 1 JunitTest: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
'''Writing Effective JUnit Test Cases''' | |||
JUnit is a testing framework aimed at making unit testing easy by simplifying the writing of test cases and by providing automated running of tests and test suites. | |||
The main aim of this document is to provide a repository of rules that can be used in-order to write an effective Junit test. | |||
This doc also discusses various sites and suggest which are the best sites to read for an overview of the topic and to understand the different philosophies of test-case design. | |||
==Introduction== | ==Introduction== | ||
===Unit Testing Overview=== | ===Unit Testing Overview=== |
Revision as of 16:05, 7 September 2009
Writing Effective JUnit Test Cases JUnit is a testing framework aimed at making unit testing easy by simplifying the writing of test cases and by providing automated running of tests and test suites.
The main aim of this document is to provide a repository of rules that can be used in-order to write an effective Junit test. This doc also discusses various sites and suggest which are the best sites to read for an overview of the topic and to understand the different philosophies of test-case design.