Ejemplo n.º 1
0
 public Assembly With_a_monitored_assembly_stored_under(string assemblyName)
 {
     var testsCompiler = new TestsCompiler();
     testsCompiler
         .StoreAssemblyAs(assemblyName)
         .With("ClassWithPublicAndPrivate.cs");
     return testsCompiler.Assembly;
 }
Ejemplo n.º 2
0
 public void Construct_fresh_index()
 {
     ensure_this_assembly_is_missing_locally("TheIndex.dll");
     var c = new TestsCompiler(@"..\..\..\TheIndex");
     c
         .ReferenceThisAssembly("ExecIndex.dll")
         .StoreAssemblyAs("TheIndex.dll")
         .With("EntryPoint.cs", "Resolver.cs");
 }