PageRenderTime 52ms CodeModel.GetById 31ms RepoModel.GetById 0ms app.codeStats 0ms

/Source/Machine.Specifications.Specs/Runner/CustomDelegatesSpecs.cs

https://github.com/machine/machine.specifications
C# | 15 lines | 12 code | 3 blank | 0 comment | 0 complexity | 1e1b353f839eeb7a66cc00fcae20a3ee MD5 | raw file
Possible License(s): MIT, CC-BY-SA-3.0
  1. using Example.CustomDelegates;
  2. using FluentAssertions;
  3. namespace Machine.Specifications.Specs.Runner
  4. {
  5. public class when_running_specs_with_custom_delegates : running_specs
  6. {
  7. Because of =
  8. () => runner.RunAssembly(typeof(Account).Assembly);
  9. It should_run_them_all =
  10. () => listener.SpecCount.Should().Be(3);
  11. }
  12. }