- Level: Beginner
- Target time: 5 minutes
Begin by creating a new Console application in Visual Studio called: ReflectionKata2. You will need to create two files:
- ReflectionTarget.cs
- ReflectionTests.cs
| var validator = Validator.BasicValidator(); |
| public interface IActivity | |
| { | |
| void Run(); | |
| bool Matches(int i); | |
| } | |
| public class PluginActivator | |
| { | |
| private readonly IContainer _container; | |
| class Program | |
| { | |
| static void Main(string[] args) | |
| { | |
| var values = new List<Sample>(); | |
| for (var i = 0; i < 10; i++) | |
| { | |
| values.Add(new Sample | |
| { | |
| Prop1 = Guid.NewGuid().ToString(), |
| public interface IModelTypeCoordinator | |
| { | |
| IValidationModel FindGetFor(Type postType); | |
| } |