Software Testing Fundamentals

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to Lesson

Podcast

Play an AI-generated podcast conversation about this lesson
Download our mobile app to listen on the go
Get App

Questions and Answers

What is the primary role of software testing?

  • To verify that the software meets specified requirements exclusively.
  • To assess software quality and reduce the risk of failure in operation. (correct)
  • To execute tests and generate test results.
  • To demonstrate the absence of defects in the software.

Which activity is considered part of software testing?

  • Planning, managing, and controlling the testing process. (correct)
  • Verifying the test object exclusively.
  • Only executing tests and checking the results.
  • Debugging the software.

What are the two aspects involved in software testing?

  • Verification and validation. (correct)
  • Planning and execution.
  • Verification and debugging.
  • Static and dynamic analysis.

What is the difference between static and dynamic testing?

<p>Dynamic testing involves executing software, while static testing does not. (B)</p> Signup and view all the answers

Which of these is NOT a typical test objective?

<p>Removing ALL defects from the software. (B)</p> Signup and view all the answers

Which of the following factors can influence test objectives?

<p>The software development lifecycle model being followed. (D)</p> Signup and view all the answers

What is the primary focus of debugging?

<p>To find the causes of failures and eliminate them. (A)</p> Signup and view all the answers

What is the purpose of confirmation testing?

<p>To check whether fixes have resolved the identified problem. (A)</p> Signup and view all the answers

What should subsequent regression testing check for after fixing a defect?

<p>Whether the fixes are causing failures in other parts of the test object. (C)</p> Signup and view all the answers

What testing activity involves defect removal without reproduction or diagnosis?

<p>Debugging after static testing. (C)</p> Signup and view all the answers

What is an indirect contribution of testing to higher quality test objects?

<p>Detection of defects that can be removed through debugging. (D)</p> Signup and view all the answers

How does testing contribute to decisions regarding the software development lifecycle?

<p>By providing quality evaluations used in project management activities. (C)</p> Signup and view all the answers

How does testing indirectly represent users in the development project?

<p>By ensuring consideration of user needs through the testers' understanding. (C)</p> Signup and view all the answers

What is the primary difference between testing and quality assurance (QA)?

<p>Testing is product-oriented and corrective, while QA is process-oriented and preventive. (C)</p> Signup and view all the answers

How are test results used differently in testing and quality assurance (QA)?

<p>In testing, they are used to fix defects, while in QA, they provide feedback on process performance. (C)</p> Signup and view all the answers

Which sequence correctly describes the relationship between errors, defects, and failures?

<p>Errors produce defects, which may result in failures. (A)</p> Signup and view all the answers

What is a root cause in the context of software defects and failures?

<p>The fundamental reason for the occurrence of a problem or defect. (A)</p> Signup and view all the answers

Which testing principle states that testing can show the presence of defects but cannot prove their absence?

<p>Testing shows the presence, not the absence of defects. (B)</p> Signup and view all the answers

What does the testing principle 'Exhaustive testing is impossible' imply?

<p>Testing efforts should be focused using test techniques and risk-based testing. (C)</p> Signup and view all the answers

What is the primary benefit of early testing?

<p>It reduces the cost of quality by finding defects early in the process. (C)</p> Signup and view all the answers

What does the principle 'Defects cluster together' suggest about defect distribution in a system?

<p>A small number of components usually contain most of the defects. (C)</p> Signup and view all the answers

What does the 'Tests wear out' principle refer to?

<p>Repeatedly using the same tests becomes ineffective in detecting new defects. (D)</p> Signup and view all the answers

What does it mean when testing is described as 'context dependent'?

<p>The approach to testing varies based on the specific project and system. (A)</p> Signup and view all the answers

What does the 'Absence-of-defects fallacy' refer to?

<p>The misconception that software verification guarantees system success. (B)</p> Signup and view all the answers

What is the purpose of test planning?

<p>To define test objectives and select an approach to achieve them. (D)</p> Signup and view all the answers

What do test monitoring and test control involve?

<p>Checking progress and taking actions to meet test objectives. (D)</p> Signup and view all the answers

What question does test analysis primarily answer?

<p>What to test? (B)</p> Signup and view all the answers

What is the main output of test design?

<p>Elaborated test conditions into test cases and other testware. (B)</p> Signup and view all the answers

What does test implementation involve?

<p>Creating or acquiring the necessary testware for test execution. (B)</p> Signup and view all the answers

During test execution, what is compared with the expected results?

<p>The actual test results. (C)</p> Signup and view all the answers

What actions are performed for any unresolved defects during test completion?

<p>Change requests or product backlog items are created for the defects. (C)</p> Signup and view all the answers

What is the purpose of analyzing test activities during test completion?

<p>To identify lessons learned and improvements for future projects. (D)</p> Signup and view all the answers

Which of the following contextual factors can influence how testing is carried out?

<p>The stakeholders' needs and expectations. (C)</p> Signup and view all the answers

What impact do organizational factors have on testing?

<p>They influence the existing policies and practices used in testing. (D)</p> Signup and view all the answers

How do project constraints like scope, time, and budget affect the testing process?

<p>They determine the level of detail of testware and test reporting. (D)</p> Signup and view all the answers

How do technical factors, such as the type of software, affect testing?

<p>They influence the test strategy and techniques used. (C)</p> Signup and view all the answers

What is the impact of the software development lifecycle on testing?

<p>It affects the engineering practices and development methods used. (D)</p> Signup and view all the answers

What aspects of testing are influenced by the availability and usability of tools?

<p>The degree of test automation and required level of coverage. (D)</p> Signup and view all the answers

Flashcards

Software Testing

Assesses software quality and helps reduce the risk of software failure in operation.

Test Objects

Work products (e.g requirements) that are tested.

Verification

Checking if the system meets specified requirements.

Validation

Checking if the system meets users’ needs in its operational environment.

Signup and view all the flashcards

Dynamic Testing

Testing that involves the execution of software.

Signup and view all the flashcards

Static Testing

Testing that does not involve the execution of software, such as reviews and static analysis.

Signup and view all the flashcards

Debugging

Finding the causes of failures (defects), analyzing these causes, and eliminating them.

Signup and view all the flashcards

Confirmation Testing

Checking whether the fixes resolved the problem.

Signup and view all the flashcards

Regression Testing

Checking whether the fixes are causing failures in other parts of the test object.

Signup and view all the flashcards

Error

A mistake made by a human that produces a defect.

Signup and view all the flashcards

Defect

A fault or bug in the software.

Signup and view all the flashcards

Failure

When the system does not do what it should, or does something it shouldn’t.

Signup and view all the flashcards

Root Cause

A fundamental reason for the occurrence of a problem (a situation that leads to an error).

Signup and view all the flashcards

Testing Limitation

Testing can show that defects are present, but cannot prove that there are no defects.

Signup and view all the flashcards

Exhaustive Testing Impossibility

Testing everything is not feasible except in trivial cases.

Signup and view all the flashcards

Early Testing Benefits

Defects that are removed early in the process will not cause subsequent defects.

Signup and view all the flashcards

Defect Clustering

A small number of system components usually contain most of the defects discovered.

Signup and view all the flashcards

Tests Wear Out

If the same tests are repeated many times, they become increasingly ineffective in detecting new defects.

Signup and view all the flashcards

Testing Context Dependency

There is no single universally applicable approach to testing. Testing is done differently in different contexts.

Signup and view all the flashcards

Absence-of-Defects Fallacy

Thoroughly testing all the specified requirements and fixing all the defects found could still produce a system that does not fulfill the users’ needs.

Signup and view all the flashcards

Test Planning

Defining the test objectives and then selecting an approach that best achieves the objectives within the constraints imposed by the overall context.

Signup and view all the flashcards

Test Monitoring

Ongoing checking of all test activities and the comparison of actual progress against the plan.

Signup and view all the flashcards

Test Control

Taking the actions necessary to meet the test objectives.

Signup and view all the flashcards

Test Analysis

Analyzing the test basis to identify testable features, defining test conditions, and prioritizing them.

Signup and view all the flashcards

Test Design

Elaborating the test conditions into test cases and other testware.

Signup and view all the flashcards

Test Implementation

Creating or acquiring the testware necessary for test execution (e.g., test data).

Signup and view all the flashcards

Test Execution

Running the tests in accordance with the test execution schedule (test runs).

Signup and view all the flashcards

Test Completion

Creating change requests for unresolved defects or product backlog items

Signup and view all the flashcards

Testing

A product-oriented, corrective approach that focuses on those activities supporting the achievement of appropriate levels of quality.

Signup and view all the flashcards

Quality Assurance (QA)

A process-oriented, preventive approach that focuses on the implementation and improvement of processes.

Signup and view all the flashcards

Study Notes

  • Software testing assesses software quality to reduce failure risks.
  • It involves defect discovery and work product quality evaluation.
  • Test objects are work products being tested.
  • Testing includes activities beyond just running tests and must align with the software development lifecycle (SDLC).
  • Testing involves verification (meeting requirements) and validation (meeting user needs).
  • Dynamic testing executes software, while static testing does not.
  • Static testing includes reviews and static analysis.
  • Dynamic testing uses techniques and approaches to derive test cases.
  • Testing requires planning, management, estimation, monitoring, and control.
  • Testers need specialized knowledge, analytical skills, critical thinking, and systems thinking.
  • The ISO/IEC/IEEE 29119-1 standard provides information about software testing concepts.

Test Objectives

  • Evaluating work products.
  • Causing failures and finding defects.
  • Ensuring required coverage of a test object.
  • Reducing the risk level of inadequate software quality.
  • Verifying specified requirements.
  • Verifying compliance with contractual, legal, and regulatory requirements.
  • Providing stakeholders with information for informed decisions.
  • Building confidence in the quality of the test object.
  • Validating that the test object is complete and works as expected.
  • Test objectives depend on context (work product, test level, risks, SDLC, business context).

Testing and Debugging

  • Testing and debugging are distinct activities.
  • Testing finds defects (static) or triggers failures (dynamic).
  • Debugging involves finding, analyzing, and eliminating the causes of failures triggered by dynamic testing.
  • The debugging process includes failure reproduction, diagnosis, and fixing the defect.
  • Confirmation testing verifies the fix, preferably by the original tester.
  • Regression testing checks for new failures caused by the fix.
  • When static testing finds a defect, debugging focuses on removing it immediately.

Why is Testing Necessary?

  • Testing is a form of quality control that helps achieve test objectives within constraints.
  • All stakeholders can use testing skills to contribute to project success.
  • Testing identifies defects in software components, systems, and documentation.

Testing’s Contributions to Success

  • Testing provides a cost-effective means of detecting defects that can be removed.
  • Testing helps evaluate a test object quality at different SDLC phases.
  • The measures are used for project management and decisions.
  • Testing represents users' needs, which ensures that their understanding is considered throughout the SDLC.
  • Testing is required to meet contractual, legal, or regulatory requirements.

Testing and Quality Assurance (QA)

  • Testing and QA are not the same.
  • Testing is product-oriented and corrective, focusing on achieving quality levels. It is a type of quality control.
  • QA is process-oriented and preventive, focusing on process implementation and improvement.
  • QA applies to both development and testing, making it everyone's responsibility.
  • Testing fixes defects, QA provides feedback on development and test process performance.

Errors, Defects, Failures, and Root Causes

  • Humans make errors (mistakes) that lead to defects (faults, bugs), which may cause failures.
  • Defects can be found in documentation, source code, or supporting work products.
  • Defects early in the SDLC can lead to defective work products later.
  • A failure occurs when a defect in code is executed and causes the system to malfunction.
  • Failures stem from errors, defects, or environmental conditions.
  • A root cause is a fundamental reason for a problem.
  • Root cause analysis identifies root causes to prevent future similar issues.

Testing Principles

  • These offer general guidelines applicable to all testing.

  • Testing shows the presence, not the absence of defects.

  • Testing can show that defects are present but it cannot prove their absence.

  • Testing reduces the probability of undiscovered defects and does not guarantee the test object correctness.

  • Exhaustive testing is impossible.

  • Testing everything is not feasible except in trivial cases.

  • Test techniques, test case prioritization, and risk-based testing should be used to focus test efforts.

  • Early testing saves time and money.

  • Defects removed early do not cause subsequent defects.

  • Static and dynamic testing should be started as early as possible.

  • Defects cluster together.

  • Most defects are typically contained within a small number of system components.

  • This is an illustration of the Pareto principle.

  • Predicted and actual defect clusters are important input for risk-based testing.

  • Tests wear out.

  • Repeated tests become ineffective at finding new defects.

  • Existing tests and data might need to be modified and new tests written.

  • Repeating the same tests can have a beneficial outcome, e.g., in automated regression testing.

  • Testing is context dependent.

  • There is no one-size-fits-all approach to testing.

  • Testing is done differently based on different contexts.

  • Absence-of-defects fallacy.

  • It is a misconception to think software verification ensures a system's success.

  • Thorough testing and fixing defects may still result in a system that does not meet user needs.

  • Validation should also be carried out.

Test Activities and Tasks

  • Activities form a test process.

  • The test process can be tailored to a given situation based on multiple factors.

  • Test planning: Defining test objectives and selecting the best approach within the constraints.

  • Test monitoring and test control: Checking test activities and taking actions needed to meet test objectives.

  • Test analysis: Analyzing test basis, identifying testable features, defining and prioritizing test conditions, evaluating the test basis, and use of test techniques. Test analysis answers "what to test?".

  • Test design: Elaborating test conditions into test cases, identifying coverage items, defining test data requirements, designing the test environment, and use of test techniques. Test design answers "how to test?".

  • Test implementation: Creating testware, organizing test cases, creating test scripts, and building the test environment.

  • Test execution: Running tests, comparing results, logging results, and analyzing anomalies.

  • Test completion: Creating change requests for unresolved defects, archiving testware, shutting down the test environment, analyzing lessons learned, creating a test completion report, and communicating with stakeholders.

Test Process in Context

  • Testing is related to stakeholders and the fulfillment of business needs.
  • Stakeholders includes needs, expectations, requirements, willingness to cooperate, etc.
  • Team members includes skills, knowledge, level of experience, availability, training needs, etc.
  • Business domain includes criticality of the test object, identified risks, market needs, specific legal regulations, etc.
  • Technical factors includes the type of software, product architecture, technology used, etc.
  • Project constraints include scope, time, budget, resources, etc.
  • Organizational factors includes organizational structure, existing policies, practices used, etc.
  • Software development lifecycle includes engineering practices, development methods, etc.
  • Tools includes availability, usability, compliance, etc.
  • These factors impact test strategy, test techniques, automation, coverage, detail, and reporting.

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

More Like This

Software Testing Concepts Quiz
48 questions
Software Testing Fundamentals
37 questions

Software Testing Fundamentals

AppreciatedAntigorite3332 avatar
AppreciatedAntigorite3332
Use Quizgecko on...
Browser
Browser