--%>

What does compatibility testing include

What does compatibility testing include and who will perform the testing?

E

Expert

Verified

Third-party testing labs will perform the compatibility testing. Precisely what will be tested will be different from application to application, but usually, testing will cover the given:

a. How the application interacts along with core phone functionality. For illustration, how the application handles scenarios like an instant message or another system alerts being pushed to the device when the user is in other application.

b. Core application stability over time. Many events will be sent in the event queue to observe how the application handles them and to seem for instability (that is crashes) and memory usage (that is leaks).

c. Main application functionality. Testing will be conducted to confirm the main functionality you claim for your application in fact is in the applications. Qualcomm will not test it functionality for "correctness" by an end-user perspective.

d. A standard set of tests for all area of BREW functionality used through the application. For illustration, we will use a standard file system test suite when the application uses the BREW file system calls. Likewise, if an application uses the BREW networking calls, so we will test it with a standard networking test suite.

e. Any manufacturer or operator -specific look and feel needs.

f.  Compatibility along with the target devices.

g. Interaction with needed accessories.

   Related Questions in Programming Languages

  • Q : What is Shallow copy Shallow copy : It

    Shallow copy: It is a copy of an object in which copies of each and every object's sub-components are not as well made. For example, a shallow copy of an array of objects would outcome in two separate array objects, each having references to similar s

  • Q : Explain Model-view pattern Model-view

    Model-view pattern: It is a pattern in which the representation of data (that is, the model) is kept separate from its visualization (that is, the view). These decoupling makes it simpler to change the underlying data representation, or give multiple

  • Q : Use of new operator What is the use of

    What is the use of new operator?

  • Q : Define HyperText Markup Language

    HyperText Markup Language: The HyperText Markup Language (abbreviated as HTML) is a simple presentation language employed to markup the content of the Web pages. Its tags appear frequently in pairs to mark sections of text which must be represented in

  • Q : Which kernel objects is utilize for

    Which kernel objects is utilize for thread Synchronization on various processes? Answer: For thread synchronization on various processes kernel objects are utilize

  • Q : What is single user sysytem What is

    What is meant by the single users system?

  • Q : Illustrates XML is an important

    Illustrates XML is an important development.

  • Q : Define the term Static type Define the

    Define the term Static type: It is the static type of an object is the declared type of the variable employed to refer to it.

  • Q : State the term XLL State the term XLL?

    State the term XLL? Answer: The specification of XML Link Language has XPointer or XLink.

  • Q : What is Final method Final method :

    Final method: This is a method with the final reserved word in its header. The final method might not be overridden by a method stated in a sub class.