testing


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users testing
# 1  
Old 08-01-2006
testing

what does one mean in the context of testing... UNIT TESTING & INITIAL LEVEL OF MENU TESTING
# 2  
Old 08-01-2006
Check google. There are a load of sites where you will find the definitions for these.
# 3  
Old 08-02-2006
There are many levels of testing: Unit testing, functional testing, Integration testing, load/performance testing. Unit testing is done at unit level typically by using some thing like Junit by the developers themselves. Rest of things are done by QA or respective teams
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Ip up/down testing

#!/bin/bash ip=$1 if ; then echo "U must enter ip as argument: $0 " exit 1 fi testip=`echo $ip |grep -E "^((||1{2}|2|25)){3}(||1{2}|2|25)$"` if ; then echo "Wrong ip adress" exit 2 fi ping -c 2 $ip 2>&1 >/dev/null if ; then echo "$ip is UP" else echo "$ip is... (2 Replies)
Discussion started by: aco4u
2 Replies

2. UNIX for Dummies Questions & Answers

testing

first time use (0 Replies)
Discussion started by: lcharles
0 Replies

3. UNIX for Advanced & Expert Users

testing

what is the difference between white box and black box testing? (1 Reply)
Discussion started by: areef4u
1 Replies
Login or Register to Ask a Question