Data Warehousing (1107) Databases (3004) JAVA Related 2673) MainFrames (975) Microsoft Related (2296) Networking (553)
Operating Systems (919) Programming (3254) SAP (2318) Testing FAQS (1674) Testing Material (252) Web Related (994)
Custom Search

What is 1000Projects

'1000projects.com' is an educational content website dedicated to finding and realizing Final Year Projects, IEEE Projects, Engineering Projects, Science Fair Projects, Project Topics, Project Ideas, Major Projects, Mini Projects, Paper Presentations, Presentation Topics, IEEE Topics, .Net Projects, Java Projects, PHP Projects, VB Projects, SQL Projects, C & DS Projects, C++ Projects, Perl Projects, ASP Projects, Delphi Projects, HTML Projects, Cold Fusion Projects, Java Script Projects, Btech Projects, BE Projects, MCA Projects, Mtech Projects, MBA Projects, Project on Software, CBSE Projects, Testing Projects, Embedded Projects, Chemistry Projects, Electronics Projects, Electrical Projects, Science Projects, Mechanical Projects, Mba project Reports, Placement papers, Sample Resumes, Entrance Exams, Technical Faq's, Puzzles, etc

how it works?

Everything on this site is submitted by the students in this professional community. You Can submit your Projects, Project Topics & Ideas to info.1000projects{at}gmail.com after you submit your project/project Idea/Abstract/Seminar Topics, These are being verified and approved by our administrator. after approval of this project/project Idea/Abstract/Seminar Topics, It can be shown on 1000projects.com so that other users can read/discuss it.The entire content on this website is Only For Educational Purpose, Non Commercial use!

Please help us/Other Users by sending projects/project Ideas/Abstracts/Seminar Topics. Thanking You!!!!!


Category Articles
Testing Types
Added on Thu, Feb 4, 2010
Testing Types   Functionality Testing:   During unit testing each component or object is tested for completeness and correctness of implementation of a specific feature of functionality. In integration... Read More
Testing Web Applications
Added on Thu, Feb 4, 2010
The various types of tests that one can apply to web application testing are:   ·        Unit Testing - testing of the individual modules and pages that make up the... Read More
Types and Levels of Testing in Programming
Added on Fri, Feb 5, 2010
Types and Levels of Testing in Programming Testing is an important step in software development life cycle. The process of testing takes place at various stages of development in programming. This is a vital step in development... Read More
Unit Testing –Flow:
Added on Sat, Feb 6, 2010
Unit Testing – Black Box Approach
Added on Sat, Feb 6, 2010
•           Field Level Check •           Field Level Validation •          ... Read More
Unit Testing – FIELD LEVEL CHECKS
Added on Sat, Feb 6, 2010
•        Null / Not Null Checks •           Uniqueness Checks •    ... Read More
Unit Testing - Functionality Checks
Added on Sat, Feb 6, 2010
•         Screen Functionalities •           Field Dependencies •          ... Read More
Unit Testing – White Box Approach
Added on Sat, Feb 6, 2010
STATEMENT COVERAGE DECISION COVERAGE CONDITION COVERAGE MULTIPLE CONDITION COVERAGE (nested conditions) CONDITION/DECISION COVERAGE PATH COVERAGE Read More
Unit Testing – Field Level Validations
Added on Sat, Feb 6, 2010
  •         Test all Validations for an Input field •           Date Range Checks (From Date/To Date’s... Read More
Types of Errors detected
Added on Sat, Feb 6, 2010
 The following are the Types of errors that may be caught •       Error in Data Structures •       Performance Errors •     ... Read More
Unit Testing – User Interface Checks
Added on Sat, Feb 6, 2010
•         Readability of the Controls •           Tool Tips Validation •          ... Read More
Execution of Unit Tests
Added on Sat, Feb 6, 2010
Design a test case for every statement to be executed. Select the unique set of test cases. This measure reports whether each executable statement is encountered. Also known as: line coverage,... Read More
Advantage of Unit Testing
Added on Sun, Feb 7, 2010
§     Can be applied directly to object code and does not require processing source code. §      Performance profilers commonly implement this measure. Read More
Method for Statement Coverage
Added on Sun, Feb 7, 2010
-Design a test-case for the pass/failure of every decision point -Select unique set of test cases §This measure reports whether Boolean expressions tested in control structures (such as the if-statement and while-statement)... Read More
RACE COVERAGE
Added on Sun, Feb 7, 2010
  This measure reports whether multiple threads execute the same code at the same time.     Helps detect failure to synchronize access to resources.   Useful for testing multi... Read More
Introduction to Unit Testing
Added on Sat, Feb 6, 2010
Unit testing. Isn't that some annoying requirement that we're going to ignore? Many developers get very nervous when you mention unit tests.Usually this  is a vision of a grand table with every single method listed,... Read More
Need for Unit Test
Added on Sat, Feb 6, 2010
How do you know that a method doesn't need a unit test? First, can it be tested by inspection? If the code is simple enough that the developer can just look at it and verify its correctness then it is simple enough to not require... Read More
Life Cycle Approach to Testing
Added on Sat, Feb 6, 2010
Testing will occur throughout the project lifecycle i.e., from Requirements till User Acceptance Testing.The main Objective to Unit Testing are as follows :   •To execute a... Read More
Concepts in Unit Testing:
Added on Sat, Feb 6, 2010
•The most 'micro' scale of testing; •To test particular functions or code modules. •Typically done by the programmer and   not  by testers. • As it requires detailed knowledge of the... Read More
Unit Testing - OTHER MEASURES
Added on Sat, Feb 6, 2010
FUNCTION COVERAGE LOOP COVERAGE RACE COVERAGE Read More
Unit Testing Flow :
Added on Sun, Feb 7, 2010
Method for Condition Coverage:
Added on Sun, Feb 7, 2010
-Test if every condition (sub-expression) in decision for true/false -Select unique set of test cases. §Reports the true or false outcome of each Boolean sub-expression, separated by logical-and and logical-or if... Read More
FUNCTION COVERAGE:
Added on Sun, Feb 7, 2010
  §          This measure reports whether you invoked each function or procedure.   §          It is useful... Read More
LOOP COVERAGE
Added on Sun, Feb 7, 2010
This measure reports whether you executed each loop body zero times, exactly once, twice and more than twice (consecutively).            For do-while loops, loop... Read More
Conclusion
Added on Sun, Feb 7, 2010
  Testing  irrespective of the phases of testing should encompass the following : Ø      Cost of Failure associated with defective products getting shipped and used... Read More
Example of Unit Testing:
Added on Sat, Feb 6, 2010
int invoice (int x, int y) {   int d1, d2, s;   if (x<=30) d2=100;   else d2=90;   s=5*x + 10 *y;   if (s<200) d1=100;   else if (s<1000) d1 = 95;   ... Read More
DISADVANTAGE of Unit Testing
Added on Sun, Feb 7, 2010
§Insensitive to some control structures (number of iterations) §Does not report whether loops reach their termination condition §Statement coverage is completely insensitive to the logical operators (|| and &... Read More





©2007, 1000projects.com, Only For Educational Purpose, Non Commercial use!