This repository was archived by the owner on Jan 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public void Run ()
7373 Runner . Run ( TestCase ) ;
7474 }
7575
76- public override void Update ( )
76+ public override void TestFinished ( )
7777 {
7878 if ( Result . IsIgnored ( ) ) {
7979 Value = Result . GetMessage ( ) ;
Original file line number Diff line number Diff line change @@ -65,13 +65,13 @@ public TestResult Result {
6565
6666 protected ITest Test { get ; private set ; }
6767
68- public void Update ( TestResult result )
68+ public void TestFinished ( TestResult result )
6969 {
7070 Result = result ;
7171
72- Update ( ) ;
72+ TestFinished ( ) ;
7373 }
7474
75- abstract public void Update ( ) ;
75+ abstract public void TestFinished ( ) ;
7676 }
7777}
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ public void Run ()
5858 Runner . Run ( Suite ) ;
5959 }
6060
61- public override void Update ( )
61+ public override void TestFinished ( )
6262 {
6363 int positive = Result . PassCount + Result . InconclusiveCount ;
6464 int failure = Result . FailCount ;
Original file line number Diff line number Diff line change @@ -829,11 +829,11 @@ public override void TestFinished (ITestResult r)
829829 if ( ts != null ) {
830830 TestSuiteElement tse ;
831831 if ( suite_elements . TryGetValue ( ts , out tse ) )
832- tse . Update ( result ) ;
832+ tse . TestFinished ( result ) ;
833833 } else {
834834 TestMethod tc = result . Test as TestMethod ;
835835 if ( tc != null )
836- case_elements [ tc ] . Update ( result ) ;
836+ case_elements [ tc ] . TestFinished ( result ) ;
837837 }
838838 } ) ;
839839 }
You can’t perform that action at this time.
0 commit comments