Write tests that ensure Constants are persisted across multiple runs of your calculator. You do not have to have persisting Constants working in your calculator project (yet). However you must have the passing tests to prove you could.
Keep in mind, our end goal is
First Run:
[0]> x = 3
saved 'x' as '3'
[1]> x
= 3
[2]> quit
Bye!
Second Run:
[0]> x
= 3
[1]> x + 3
= 6
[2]>
- Practice creating and using Mocks during tests
- Practice using and leveraging MSDN documentation
- Get your tests green! 😄