Define a public
class named Counter
with a single public
instance method named increment
.
increment
takes no parameters and returns an int
.
The first time it is called it should return 0
, the next 1
, the next 2
, and so on.
Each instance of Counter
should maintain its own private
counter.
You're challenge is to write tests for this problem described above.
Stuck? You may find these lessons helpful: