Visual Basic Tutorials- Software Testing
It is my belief that software development is one of the most complex tasks that human beings are called upon to perform. This assertion led to comments like, "What about people who design nuclear reactors, or the space shuttle?". Sure, there might be a lot of tasks on a list above "Write Software," but we could argue that "Write Quality Software" should be high up on the list, too. Quality consists of many attributes, the most important being that a piece of software should perform exactly as designed. In this chapter, I will cover several ways to test Visual Basic code that illustrate this key concept: testing should be planned before code is written, and all code should be written with testing in mind.
Table of content (tutorial index)
advertisement
"Well, at Least It Compiled OK!"
The Purpose of Testing
Unit/Component Testing
System Testing
User Acceptance Testing
Code Reviews
Partner with Another Developer
Create Regular Builds
Decide Where to Put Test Code
Get the Users Involved
Test Plans
Stubs and Drivers
Planning a Code Component
Functional Specification
Test Script Specification
Performance Testing
Test Machine Configurations
A Final Word of Caution