Getting Started with Ruby on Rails Testing
Rubry on Rails has a fantastic environment and a rich set of tools and frameworks to make software testing easier. But how to you get started testing?
Rubry on Rails has a fantastic environment and a rich set of tools and frameworks to make software testing easier. But how to you get started testing?
Learn how to improve our unit test using Microsoft Fakes. Fakes help you isolate the code you are testing by replacing other parts of the application with stubs or shims. These are small pieces of code that are under the control of your tests. By isolating your code for testing, …
Learn how Salesforce.com scales its Selenium infrastructure not through SeleniumGrid, or using the Jenkins plugin like other companies, but rather through continuously provisioning and destroying Selenium hosts. Learn how to use a mix of VM gold masters for various browsers and install some software dynamically. This presentation also discusses the …
Appium is an open source test automation framework for use with native and hybrid mobile apps. It drives iOS and Android apps using the WebDriver.
This presentation focuses on two specific problems that plague testing complex systems: how do I create useful test data, and how do I limit my test to only the part of the system that I want tested. It covers data creation tools like factories and fixtures. It also discusses how …
CodeIgniter is an agile and open source PHP web application framework. CodeIgniter Unit Test class is relatively simple to use and allows you to perform unit testing for your code.