Test Driven Development

Descrição

A-Level Application, build, testing and deployment (Test Driven Development) Notas sobre Test Driven Development, criado por James Drummond em 14-12-2014.
James Drummond
Notas por James Drummond, atualizado more than 1 year ago
James Drummond
Criado por James Drummond mais de 9 anos atrás
5
0

Resumo de Recurso

Página 1

What are the aims / what is the point of TDD? One of the primary aims of unit testing is to isolate a method or component that you want to test and see how it behaves under a variety of circumstances. 

How to write testable Javascript: Externalize all javascript - don't write inline as it can't be tested. Provide a public interface - it's difficult to test private methods Use instantiable objects Flatten the pyramid of doom: avoid many nested levels of callbacks Separate DOM event handlers from the actions they perform: e.g. separate submit button click from form submit. Mock in XHR requests

The process of test driven development: You first write a test for a function before you write the function itself You create a failing test initially, rounding this out with passing tests. You then build the actual functionality of the function. Run the tests to see that you get the expected results. After that you wrinse and repeat.

New Page

Semelhante

Quiz - Object Oriented Javascript
arunram.krish
Examen Fundamentos Basicos de Programación
Jose Valderrama0721
Test I. Introduction to web technologies
Angel Martínez Rodriguez
JavaScript Fundamentals
Andrew Watters
Front-End Web Development
Chanthy Ngin
Javascript - Quiz - Jan 2016
arunram.krish
OpenSource Programming
Faheem Ahmed
Javascript basics
James Drummond
jQuery Basics functions and method
Victor Bini
JavaScript DOM API - Funções Basicas - Interactive Web Pages
Victor Bini
Javascript Variables
Rene Escobar