1- using System ;
1+ using System ;
22using System . IO ;
33using System . Linq ;
44using System . Reflection ;
@@ -37,9 +37,9 @@ public class when_running_a_specification_assembly
3737
3838 It should_write_the_specifications =
3939 ( ) => console . Lines . Should ( ) . Contain (
40- "» should debit the from account by the amount transferred" ,
41- "» should credit the to account by the amount transferred" ,
42- "» should not allow the transfer" ) ;
40+ "» should debit the from account by the amount transferred" ,
41+ "» should credit the to account by the amount transferred" ,
42+ "» should not allow the transfer" ) ;
4343
4444 It should_write_the_contexts =
4545 ( ) => console . Lines . Should ( ) . Contain (
@@ -71,7 +71,7 @@ public class when_running_a_specification_assembly_and_silent_is_set
7171 ( ) => console . Lines . Should ( ) . Match ( l => ! l . All ( _ => _ . StartsWith ( "Account Funds transfer" ) ) ) ;
7272
7373 It should_not_write_the_specifications =
74- ( ) => console . Lines . Should ( ) . Match ( l => ! l . All ( _ => _ . StartsWith ( "» should" ) ) ) ;
74+ ( ) => console . Lines . Should ( ) . Match ( l => ! l . All ( _ => _ . StartsWith ( "» should" ) ) ) ;
7575
7676 It should_write_the_count_of_contexts =
7777 ( ) => console . Lines . Should ( ) . Contain ( l => l . Contains ( "Contexts: 3" ) ) ;
@@ -97,7 +97,7 @@ public class when_running_a_specification_assembly_and_progress_is_set
9797 ( ) => console . Lines . Should ( ) . Match ( l => ! l . All ( _ => _ . StartsWith ( "Account Funds transfer" ) ) ) ;
9898
9999 It should_not_write_the_specifications =
100- ( ) => console . Lines . Should ( ) . Match ( l => ! l . All ( _ => _ . StartsWith ( "» should" ) ) ) ;
100+ ( ) => console . Lines . Should ( ) . Match ( l => ! l . All ( _ => _ . StartsWith ( "» should" ) ) ) ;
101101
102102 It should_write_the_specification_results =
103103 ( ) => console . Lines . Should ( ) . Contain ( "...***" ) ;
@@ -165,7 +165,7 @@ public class when_a_specification_fails_and_silent_is_set : ConsoleRunnerSpecs
165165 ( ) => exitCode . Should ( ) . Be ( ExitCode . Failure ) ;
166166
167167 It should_write_a_summary_of_failing_specifications =
168- ( ) => console . Lines . Should ( ) . Contain ( "Failures:" , "Scott Bellware, at any given moment" , "» will fail (FAIL)" ) ;
168+ ( ) => console . Lines . Should ( ) . Contain ( "Failures:" , "Scott Bellware, at any given moment" , "» will fail (FAIL)" ) ;
169169
170170 It should_write_failure_stack_traces =
171171 ( ) => console . Lines . Should ( ) . Contain ( l => l . Contains ( "hi scott, love you, miss you." ) ) ;
@@ -192,7 +192,7 @@ public class when_a_specification_fails_and_progress_is_set : ConsoleRunnerSpecs
192192 ( ) => exitCode . Should ( ) . Be ( ExitCode . Failure ) ;
193193
194194 It should_write_a_summary_of_failing_specifications =
195- ( ) => console . Lines . Should ( ) . Contain ( "Failures:" , "Scott Bellware, at any given moment" , "» will fail (FAIL)" ) ;
195+ ( ) => console . Lines . Should ( ) . Contain ( "Failures:" , "Scott Bellware, at any given moment" , "» will fail (FAIL)" ) ;
196196
197197 It should_write_failure_stack_traces =
198198 ( ) => console . Lines . Should ( ) . Contain ( l => l . Contains ( "hi scott, love you, miss you." ) ) ;
@@ -223,7 +223,7 @@ public class when_running_from_directory_different_from_assembly_location : Cons
223223 It should_pass_the_specification_which_depends_on_external_file = ( ) =>
224224 console . Lines . Should ( ) . Contain (
225225 "External resources usage, when using file copied to assembly output directory" ,
226- "» should be able to locate it by relative path" ) ;
226+ "» should be able to locate it by relative path" ) ;
227227
228228 It should_pass_all_specifications = ( ) =>
229229 console . Lines . Should ( ) . NotContain ( "failed" ) ;
0 commit comments