Friday, October 16, 2020

What is Smoke Testing?

Smoke Testing: This is build acceptance Testing performed after build is released to the Testing. This Testing is done to check the major functionalities are working fine or not.


What is Sanity Testing?

Sanity Testing: This is build acceptance Testing performed after build is released to the Production. This Testing is done to check the major functionalities are working fine or not.


What is Re-Testing?

Retesting: Retesting is performed after Defect is fixed to verify whether fix is working fine


What is Regression Testing?

Regression: Regression is performed in 3 ways to make sure existing functionality is not disturbed during the changes.

1. Whenever new build is released

2. Whenever a defect is fixed

3. Whenever environment changes are happened


What is UAT?

UAT (User acceptance Testing): UAT is performed verify whether build is acceptable to customer before releasing to the production. We have 2 types of UAT testing:

1. Alpha - Testing

2. Beta - Testing

Alpha-Testing is performed at development site in the presence of the customer

Beta-Testing is performed at production site in the presence of the customer


What is Defect Life Cycle:

Defect Life Cycle: We can say Defect Life Cycle means "the travel of the defect from Open status to Closed status"

There different phases of a Defect:

1. Open

2. In progress

3. Fixed

4. Resolved

5. Closed

6. Reopened

7. Invalid

8. Deferred

-> Whenever a Tester raised the defect, the status of the defect is 'open'.

-> It is moved to "Inprogress" when Developer accepts the defect as Bug

-> When developer gives the fix for the defect then, the status is moved to 'Fixed'

-> Once the defect is fixed, Tester does Retesting. If functionality is working as expected, the status is moved to 'Resolved'

-> If the Functionality is not working as expected, then the status of the defect is moved to 'Re-Opened'

-> All Resolved Defects are moved to the 'Closed' status by the Test Lead.

-> Whenever defect is raised and developer thinks it is working fine. He changes the defect status to 'Invalid'

-> If there are any minor defects and those are not required to fix in the current release the Defect status is moved to 'Deferred' 


What is the deferred status?

If there are any minor defects and those are not required to fix in the current release then, the Defect status is moved to 'Deferred'.


What is Priority and its Levels?

Priority tells How urgency, the defect need to be fixed. It is Client Point of View.

Priority Levels can be:

1. Blocker

2. Critical

3. Major

4. Medium

5. Minor

6. Low


What is Severity and its Levels?

Severity tells the impact of the defect on the application. 

Deferent Severity Levels are:

1. Blocker

2. Critical

3. Major

4. Medium

5. Minor

6. Low


================================================================


What is FileSystem? - Linux
    How to copy a file from one system to another system? - Linux
    How to search a text from a file without Vi editor. - Linux
    

Related Posts:

  • 2nd highest salary of an employee? MySQL: Sub queries in SQL are great tool for this kind of scenario, here we first select maximum salary and then another maximum excluding result of subquery mysql> SELECT max(salary) FROM Employee WHERE salary NOT IN (S… 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
  • foreach() method in Java Java API provides foreach() method since jdk1.8v. This method traverses each element of the collection until all elements have been Processed by the method or an exception is raised. Exceptions thrown by the Operation are pa… Read More
  • Fibonacci Series Write a Java Program to print Fibonacci  series up to 10        public class Fibonacci { public static void main(String[] args) { int num = 10;  … Read More
  • 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

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