Skip to main content

Structural Testing

Structural Testing is the type of testing in which user should have the knowledge of the code because in this testing user need to check the structure of the system. Structural Testing is White Box Testing.

The intension of  Structural Testing is not to check the input and generated output. Structural Testing intension have to check the internal structure of the software and check the various structure and data structure of the software.

In Structural Testing, tester need to know the show the software implemented and how the software is working. Structural Testing can be perform in all level of testing. Generally developers use this kind of testing in Component Testing and Component Integration Testing.

There are some techniques to cheek the Structural Testing
  • Statement Coverage: By using Statement Coverage we can identity that which Statement is executed and which code is not executed so we need to verify the every line to code to check the execution of statement. The main goal of this Statement Coverage to test the complete code with the minimum usage of Test Cases. Means in Statement Coverage we verify that how we can execute the complete code by using minimum number of Test Cases.
Formula to find the Statement Coverage

Statement Coverage = (Total Number of Statement exercised/ Total Number of Statement) * 100%

  • Branch Coverage: Branch Coverage is used to ensure that there should be a Test Case so that all Branches should be tested at least once. This is also called Decision Coverage. Branch Coverage we use when there are possibilities of two outcomes . It may be IF Statement , Do While Loop , Cases Statement because in all this 2 outcomes can come. One is True and other is False. So Branch Coverage say that each out come of control statement should be executed at least once. 

Formula for Branch Coverage

    Branch Coverage = (Total Number of Decision Outcome Executed/ Total Number of Decision Outcomes) * 100%

    • Path Coverage: In Path Coverage every possible path should be executed at least once . It means it cover all statement and branch at least once. 

    Formula for Path Coverage

      Path Coverage = (Total Number of Path Exercised/ Total Number of Path in the Program) * 100%

      Comments

      Popular posts from this blog

      How to Put Load on a Script in JMeter

      In last post we discussed about how to record a test script and Firefox settings to run the script. In this post we will discuss about how the Thread Group will work, how can we put n number of users to perform load testing, In JMeter by using Thread Group, we can create virtual users. Thread Group is a set of thread which work in same scenario. There are multiple thread group are available which is use to configure how the virtual users interest with the application, How much load maintain and till how much time load maintain.

      How to take the Screenshot in Selenium WebDriver?

      If we want to take the screenshot then we have to convert our WebDriver object into the screenshot object. we need to change the behavior of the drive to take the screenshot . We can do it by casting

      JMeter Overview Description

      In this article we will go through the multiple section of JMeter and describe the tool information. we will discuss about every component of JMeter tool in this Article so that you can hands on while working on script on JMeter about these components.