Page 27 : 35
Object-oriented Programming in C#
Test of Object-oriented Programs
* Program Testing in General
Introduction to Program Testing
Overview of Program Testing
Testability
Test Utopia
From Program Test to Program Proof
* White Box Testing
White box testing
Basis Path Testing
Cyclomatic Complexity - flow chart
Cyclomatic Complexity - flow graph
Cyclomatic Complexity - Metric and Test Cases
* Black Box Testing
Black box testing
Input to a Black Box Test
Example of Equivalence Partitioning (1)
Example of Equivalence Partitioning (2)
Regression testing
* Unit Test of Object-oriented Programs
Test Units
Unit Testing
A Unit Test example in C# (1)
A Unit Test example in C# (2)
NUnit for C#
NUnit Attributes
NUnit Assertions
Unit Test Concepts
Another Unit Test example in C#
Unit test of struct Interval
Test Scaffolding
The Background and Context of Unit Testing
Test of Object-oriented programs
Test Driven Development
Unit Test Recommendation
Test Recommendations in your Project
Unit Test Concepts
Understanding the common concepts of Unit testing
Assertion
A boolean function which compares some value or state with its expected result
"An atomic test" -
true
means
pass
,
false
means
fail
Test
or
Test case
Execution of a piece of code followed by activation of one or more assertions
Test suite
An aggregation of test cases
Test fixture
A fixed state used as a baseline for running a set of tests [Wikipedia]
Used to ensure that each test is executed in a fixed and well-defined state, such that a test is repeatable
Test cases and Test suites may be organized as a
Composite
The Composite design pattern