- Level: Beginner
- Target time: 5 minutes
Begin by creating a new Console application in Visual Studio called: ReflectionKata1. You will need to create two files:
- ReflectionTarget.cs
- ReflectionTests.cs
Simply copy the contents of all files (including Program.cs) from their respective companions supplied in this gist.
Replace the body of all methods found in the ReflectionTests class so that the methods perform the instructions described by their name. Use Console.WriteLine() to "print" information as instructed.
Replace the body of the InvokeAllMethodsOnReflectionTestsClass() method found in the Program class. Once complete, run the application.