Skip to main content

Mobile Testing

Mobile application types,
  • Web mobile.
  • Native applications.
  • Hybrid applications. 
Mobile testing types,
  • Security testing.
  • Accessibility testing.
  • Performance testing (not only the application performance but need to check battery usage, memory usage as well).
  • Network testing.
  • Operational consistency testing.
Challenges for mobile testing,
  • Device variance, 
               Different  manufactures and different technologies and configurations.  
  • Mobile platform and operation system variance. 
  • Network operators.
QA best practices, 
  • Selecting device (simulator/emulator or physical device).
  • Check list and operating system diversity. 
  • Beta test releases. 
  • Thoroughly testing for standby and interruption mode.
  • Different language testing.

Comments

Popular posts from this blog

Differences between Severity ,Priority and Status

In market there are many bug tracking and project management tools available. These tools allow us to keep essential information of a bug or task. You will see there are three places have to fill when key in a task. Those three places are Status, Priority and Status of a bug/task. Let's see what those stand for.  Severity Priority Status Connotation Severity of a bug means how much it affecting to functionality of the software. Total damage it can do. Priority means how fast a bug or task should be resolve. Status means the current position of the bug/task. Types            Critical            Major            Moderate            Minor           Cosmetic           Low           Medium       ...

MVC Architecture

Model-View-Controller (MVC) is a design pattern recently most popular among software engineers for applications which are needed to provide multiple views with using same data. I am suggesting MVC is better than WCF, because of this module separation. For an examples       ·          Multiple views and controllers can interface with same model for modification even those never exist before add this model.       ·          It is supporting all type of HTML verbs.       ·          No view state and post back events.       ·          Easy integration with JavaScript framework.       ·          Helps to decrease complexity of project       ·          P...