Tuesday, January 8, 2019

Software Testing: 
The process of verifying or validating an application with the intention of finding bugs or defect in software so that it could be corrected before product is delivered to the end user. 
                                                            (OR)
It is an activity to verify whether actual results are matched with expected results and ensure software is defect free, provide customer satisfaction.
Software testing has come to play a vital role in the success of the business.
This can be done through either manually or using automation tool.
Project vs Product:
ProjectIf a software application designs for a specific client, then it is called PROJECT. 
                                                            (OR)
    If any organization is developing the application according to the client specification then it is called as project
Ex: Banking web sites like HDFC Netbanking site, IRCTC, APSRTC etc.,
ProductIf a software application is design for multiple clients, then it is called a PRODUCT. 
                                                           (OR)
If any organization is developing the application and marketing it is called as PRODUCT.
Example: Windows, Gmail, WhatsApp etc.,
Types of Software Testing:
  1. Functional Testing
  2. Non-Functional Testing
Functional Testing: Functional Test is a type of software testing whereby the system is tested against the functional requirements/specifications.
Functional testing is done to verify all the functionality of a product. 
This testing mainly involves black box testing and it is not concerned about the source code of the application. The Testing can be done either manually or using Automation tool.
Typically, functional testing involves the following steps:
    • Identify functions that the software is expected to perform.
    • Create input data based on the function’s specifications.
    • Determine the output based on the function’s specifications.
    • Execute the test case.
    • Compare the actual and expected outputs.
Non-Functional Testingtype of Software testing to check non-functional aspects of a software application. Non functional testing activities includes:
    • Performance testing
    • Load Testing
    • Stress testing
    • Volume testing
    • Security testing
    • Installation testing
    • Compatibility Testing
    • Recovery testing


Related Posts:

  • Static Keyword Static is a keyword in Java, which is used for static blocks variables methods and  inner classes or nested classes A static member can be accessed directly with the class name with out creating an object.  Th… Read More
  • Hashmap vs Hashtable Difference between Hashmap and Hashtable? HashMap is non-synchronized. Hashtable is synchronized.  HashMap allows multiple threads where as hashtable doesn't HashMap is not thread-safe where as hashtable is. HashMap … Read More
  • String Reverse Example public class StringReverse { public static void main(String[] args) { String str="selenium",reverse=""; for(int i=str.length()-1;i>=0;i--) { reverse=reverse+str.charAt(i… Read More
  • TestNG Annotations What is TesNG and What are the annotations in the TestNG?      Ans: TestNG is testing framework to run the test cases. TestNG supports annotations like:       @BeforeSuite       &… Read More
  • HashMap vs ConcurrentHashMap Difference between HashMap and ConcurrentHashMap: ConcurrentHashMap is thread-safe that is the code can be accessed by single thread at a time. while HashMap is not thread-safe HashMap can be synchronized by using sy… Read More

0 comments:

Post a Comment

Selenium Training in Realtime

Blog helps to a student or IT employee to develop or improve skills in Software Testing.

Followers

About Me

My photo
Hyderabad, Andhra Pradesh, India
I am Automation Testing Professional. I have completed my graduation in B.Tech (Computers) from JNTU Hyderabad and started my career in Software Testing accidentally since then, I passionate on learning new technologies

Contact Form

Name

Email *

Message *

Popular Posts