So we used two very small functions: goesOnLivingWith and isCreatedWith that accepted the number of neighbors as a parameter.
We implemented them using TDD and end up with the following tests:
This file contains 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
describe("rules", function() { | |
describe("rule to go on living", function() { | |
it("dies with more than 3 neighbors", function() { | |
expect(rules.goesOnLivingWith(4)).toBe(false); | |
}); | |
it("dies with less than 2 neighbors", function() { | |
expect(rules.goesOnLivingWith(1)).toBe(false); | |
}); | |
it("goes on living with 2 or 3 neighbors", function() { | |
expect(rules.goesOnLivingWith(3)).toBe(true); | |
expect(rules.goesOnLivingWith(2)).toBe(true); | |
}); | |
}); | |
describe("rule to be created", function() { | |
it("is created with 3 neighbors", function () { | |
expect(rules.isCreatedWith(3)).toBe(true); | |
}); | |
it("is not created with less than 3 neighbors", function () { | |
expect(rules.isCreatedWith(1)).toBe(false); | |
}); | |
it("is not created with more than 3 neighbors", function () { | |
expect(rules.isCreatedWith(4)).toBe(false); | |
}); | |
}); | |
}); |
This file contains 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
var rules = (function () { | |
function hasThreeNeighbors(numberOfNeighbors) { | |
return numberOfNeighbors == 3; | |
} | |
function hasTwoNeighbors(numberOfNeighbors) { | |
return numberOfNeighbors == 2; | |
} | |
return { | |
goesOnLivingWith: function (numberOfNeighbors) { | |
return hasThreeNeighbors(numberOfNeighbors) || | |
hasTwoNeighbors(numberOfNeighbors); | |
}, | |
isCreatedWith: function (numberOfNeighbors) { | |
return hasThreeNeighbors(numberOfNeighbors); | |
} | |
}; | |
})(); |
This file contains 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
describe("rules", function() { | |
describe("rule to go on living", function() { | |
it("does't go on living because of overpopulation", function() { | |
expect(rules.goesOnLivingWith(4)).toBe(false); | |
}); | |
it("does't go on living because of underpopulation", function() { | |
expect(rules.goesOnLivingWith(1)).toBe(false); | |
}); | |
it("goes on living", function() { | |
expect(rules.goesOnLivingWith(3)).toBe(true); | |
expect(rules.goesOnLivingWith(2)).toBe(true); | |
}); | |
}); | |
describe("rule to be created", function() { | |
it("has enough neighbors to be created", function () { | |
expect(rules.isCreatedWith(3)).toBe(true); | |
}); | |
it("has not enough neighbors to be created", function () { | |
expect(rules.isCreatedWith(1)).toBe(false); | |
}); | |
it("has too many neighbors to be created", function () { | |
expect(rules.isCreatedWith(4)).toBe(false); | |
}); | |
}); | |
}); |
Avoiding coupling test names with implementation by expressing just behavior will make test names more durable since they won't have to be changed if the implementations undergo any changes.
No comments:
Post a Comment