in reply to Unit testing OS rich code
Essentially all you are testing is:
if( TRUE ) { # comes here } ...
And:
if( FALSE ) { ... } else { # comes here }
It is tests like these that show up testing for the sake of numbers -- in this case, coverage statistics -- as the meaningless time-wasting exercise it so often is.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Unit testing OS rich code
by chromatic (Archbishop) on Oct 12, 2011 at 23:45 UTC | |
by BrowserUk (Patriarch) on Oct 13, 2011 at 00:09 UTC | |
by chromatic (Archbishop) on Oct 13, 2011 at 00:20 UTC |