Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 964 Bytes

README.md

File metadata and controls

29 lines (17 loc) · 964 Bytes

TDD Katas

Overview

This repo contains my implementations of various TDD katas, programming exercises intended to reinforce the skill of Test-Driven Development through practice and repetition.

Katas

String Calculator (source)

Tests a class whose primary function is to find the sum of numbers inputted as a deliminated string.

Bowling Game (source)

Tests a bowling game module which allows for rolling the ball and getting the current score.

Stack (source)

Tests a stack data structure (last-in-first-out). The class methods do not rely on built-in langauge methods for typical stack behavior (e.g. push, pop).