Tools
wboxtest.txt
Associated article: White-Box Testing
Tags: Web Development Tools Design
Published source code accompanying the article by Oliver Cole in which he examines white-box testing strategies, which include designing tests such that every source line of code is executed at least once, and requiring every function to be individually tested.
White-Box Testing
by Oliver Cole
Example 1:
(a)
#include "aprobe.h"
probe thread
{
probe "fstat" in "libc.so"
{ /* Parameter one is $1, Parameter two is $2, etc */
on_entry
log ("St_dev is ", $2-> ...


