Book Image

Oracle JET for Developers

By : Raja Malleswara Rao Malleswara Rao Pattamsetti
Book Image

Oracle JET for Developers

By: Raja Malleswara Rao Malleswara Rao Pattamsetti

Overview of this book

This book will give you a complete practical understanding of the Oracle JavaScript Extension Toolkit (JET) and how you can use it to develop efficient client-side applications with ease. It will tell you how to get your own customized Oracle JET set up. You'll start with individual libraries, such as jQuery, Cordova, and Require.js. You'll also get to work with the JavaScript libraries created by Oracle, especially for cloud developers. You'll use these tools to create a working backend application with these libraries. Using the latest Oracle Alta UI, you'll develop a state-of-the-art backend for your cloud applications. You'll learn how to develop and integrate the different cloud services required for your application and use other third-party libraries to get more features from your cloud applications. Toward the end of the book, you'll learn how to manage and secure your cloud applications, and test them to ensure seamless deployment.
Table of Contents (17 chapters)
Title Page
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

Oracle JET application testing tools


Before reviewing the set of tools that will help us programmatically test/unit test applications developed with Oracle JET, let us understand a unit that is eligible for unit testing. In an ideal scenario, a unit is an independent function that repeatedly produces the same result for a set of input parameters. It is a good idea to start unit tests before dealing with complex scenarios, including DOM manipulation. It has been observed that building unit test cases is easier if you are doing it while you are developing each unit of function with the knowledge of the purpose of that function. However, we can write unit test cases that cover most of our code and uncover potential bugs that may not have been tested before.

Applications developed with Oracle JET can be programmatically tested with any of the following web applications/JavaScript testing tools.

QUnit

QUnit is one of the prevailing JavaScript unit test frameworks being used by leading software developments...