newperson
Newbie
Reged: 08/22/06
Posts: 2
|
|
where can I find white box testing tutorial or ebooks on how to get started/initial steps? The links I found online didn't give full insight for a newbie
|
Decent
Newbie
Reged: 05/26/09
Posts: 8
|
|
here is link , hopefully it will help you. http://agile.csc.ncsu.edu/SEMaterials/WhiteBox.pdf
-------------------- regards,
DECENT
http://softwarequality-assurance.blogspot.com
|
saurabh1886
Member
Reged: 06/02/09
Posts: 35
Loc: Pune
|
|
MSDN is the best site for such tutorials. Also you can refer asp.net forum.
|
JakeBrake
Moderator
Reged: 12/19/00
Posts: 15290
Loc: St. Louis - Year 2025
|
|
What makes it the best?
|
Avni78
Newbie
Reged: 08/14/09
Posts: 1
|
|
Are there any good books available for white box testing in java or any other language? Is test framework development different from white box testing?
Thanks Avni
|
nopenny2000
Newbie
Reged: 07/24/09
Posts: 13
|
|
While you may get different definitions of white box testing on these boards, I tend to believe it means you have access to the code. Whether that means you can directly run the code, or you can see the code but you only have access to the UI.
Test Framework development, from my understanding, simply means you are using a framework to develop your tests. Something like JUnit. Therefore, I would argue that Test Framework Development is a type of White box testing.
Some book titles, and I'm not necessarily recommending any:
- The Software Test Engineer's Handbook - Advanced Software Testing Vol 1 & Vol 2 - JUnit in Action - JUnit Recipes - Just Enough Software Test Automation
Edited by nopenny2000 (08/17/09 08:55 AM)
|
polly_deng
Newbie
Reged: 09/09/09
Posts: 10
|
|
Junit Recipes is pretty good. if you want prease sent e-mail to me.
Edited by JakeBrake (09/14/09 05:10 AM)
|
Paul_George12
Newbie
Reged: 02/03/10
Posts: 4
|
|
Hi Polly,
Can you pls give me an idea about Junit i.e how to go about it implementation and monitoring activities
|
venky510
Member
Reged: 01/21/10
Posts: 34
Loc: Gujarat,India
|
|
hi,
hope this link will help you .. http://openseminar.org/se/modules/46/index/screen.do
regards Venkat
-------------------- regards,
venkatesan
http://venkatesan-iyer.blogspot.com
|
TestingMentor
Member
Reged: 12/28/06
Posts: 235
Loc: Seattle, Washington
|
|
Is there a specific type of white box testing that you are interested in (e.g. code review/inspection, unit testing, structural anaylsis, data flow, etc.)?
-------------------- - Bj -
I.M. Testy blog
Testing Mentor
|
Albator
Newbie
Reged: 03/17/08
Posts: 9
Loc: Israel
|
|
jumping into the thread as i have similar needs... do youhave any tool recommendation for structural analysis and data flow coverage? thanks in advance
-------------------- Wherever you go, go with all your heart. ~Confucius
|
dtran71
Member
Reged: 07/26/10
Posts: 28
|
|
White box testing has come along way since, I was a tester. The following are the automated tools we are looing into white box testing:
.net - PEX JAVA - Junit Data integrity and flow - Learn SQL
|
mfsi_sitamj
Newbie
Reged: 10/11/11
Posts: 15
|
|
White-box testing is a method of testing software that tests internal structures or workings of an application, as opposed to its functionality (i.e. black-box testing). It is also known as clear box testing,glass box testing,transparent box testing, and structural testing.
White box testing include the follwing :- 1) Logic Coverage :- a) Statement: Each statement executed at least once. b) Branch: Each branch traversed (and every entry point taken) at least once. c) Condition: Each condition True at least once and False at least once. d) Branch/Condition: Both Branch and Condition coverage achieved. 2) Dataflow coverage : Checks all the flow of datas that are flowing through the module. 3) Path conditions and symbolic evaluation.
You can use the following links : White Box Testing - WIKI.
White Box Testing Tutorial.
-------------------- Sitam Jana
"Visualize a dream, chase a dream, live a dream"
QA engineer
Mindfire Solutions
|
softwaretestingc
Member
Reged: 08/26/12
Posts: 32
Loc: India
|
|
What is a White Box Testing? In the previous Software Testing Class I have explain about Black Box testing. In this section I am introducing the What is White Box Testing, What do you verify in White Box Testing, White box testing techniques, white box testing definition, types of white box testing, white box testing example, advantages and disadvantages of white box testing etc.
White Box Testing (WBT) is also known as Code-Based Testing or Structural Testing. White box testing is the software testing method in which internal structure is being known to tester who is going to test the software.
You can use the following links: White Box Testing
|