JavaScript Testing and Code Analysis at Facebook
Avik Chaudhuri, Software Engineer at Facebook, and Jeff Morrison, Software Engineer at Facebook discusses how Facebook handle software testing and code analysis of its JavaScript code.
Unit Testing Tutorials and Videos
Avik Chaudhuri, Software Engineer at Facebook, and Jeff Morrison, Software Engineer at Facebook discusses how Facebook handle software testing and code analysis of its JavaScript code.
The PHP Roundtable discusses two software testing approaches: test-driven development (TDD) and behavior-driven development (BDD). The participants talk about how these two methodologies bring a unique angle to testing software and how we can use them in tandem in our own PHP project.
Thousands of Google engineers have collectively written about 100,000 separate C++ test binaries in the last 15 years. Not all of those was a perfect test. In this talk we’ll focus on how to write good tests and adopt a good testing philosophy, with lots of examples of what not …
In this interview, Eric Potter presents the Canopy test framework. Canopy is an open source web testing framework with one goal in mind, make UI testing simple. It provides a solid stabilization layer built on top of Selenium. It is quick to learn, even if you have never done UI …
Maintaining Grails plugins can be a real challenge given the high expectations and demands. Apart from supporting many users, you’re tasked with making sure that the plugin is compatible with a range of Grails versions – both old and new. Your plugin must also be compatible with multiple development environments …
Minitest is a testing library of just 1,500 lines of Ruby code. By comparison, Rspec clocks in at nearly 15,000! Why is Minitest so small? I’d like to investigate by doing a guided read of Minitest’s source code.