This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
customer (business) facing test | |
technology (code) facing test | |
whole team approach | |
power of three | |
iteration | |
feedback | |
edge case | |
happy/sad paths | |
refactor |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 core agile testing practices | |
Acceptance Test Driven Development | |
Automated Functional Testing | |
Test Driven Development | |
Automated Unit Testing | |
Exploratory Testing | |
Collective Test Ownership | |
Continuous Integration | |
Rehearse Release |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exploratory testing studies | |
@jamesmarcusbach: I have seen a few studies of exploratory testing that were scientifically respectable, but none of those used the term "exploratory testing" | |
@Rob_Lambert: Care to share the scientifically respectable studies? Genuinely interested to find out how they studied ET. | |
@jamesmarcusbach: Study #1: See the book "Exploring Science." It is the chronicle of a group of experiments in figuring out technology. | |
@jamesmarcusbach: See Jerry Weinberg's 1965 Ph.D. dissertation on exploratory problem-solving: http://bit.ly/KTXML |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
no tests | |
legacy code base | |
"dirties" design | |
it doesn't catch bugs | |
it's slower | |
it's boring | |
hard to change | |
too many interfaces | |
testing is for qa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my software testing blogs in google reader (by order of first name): | |
Abby Fichtner | |
http://www.thehackerchickblog.com/search/label/testing | |
Adam Goucher | |
http://adam.goucher.ca/ | |
Aidy Lewis | |
http://agiletester.blogspot.com/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// insert in core.js | |
JS.singleton = function(name, parent, methods) { | |
var args = arguments; | |
return (function(args) { | |
// store instance and class in private variables | |
var instance = null; | |
var klass = new JS.Class(name, parent, methods); | |
return { | |
getInstance: function() { | |
if (instance) { return instance; } |
NewerOlder