This repository was archived by the owner on Jan 10, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public void Run ()
73
73
Runner . Run ( TestCase ) ;
74
74
}
75
75
76
- public override void Update ( )
76
+ public override void TestFinished ( )
77
77
{
78
78
if ( Result . IsIgnored ( ) ) {
79
79
Value = Result . GetMessage ( ) ;
Original file line number Diff line number Diff line change @@ -65,13 +65,13 @@ public TestResult Result {
65
65
66
66
protected ITest Test { get ; private set ; }
67
67
68
- public void Update ( TestResult result )
68
+ public void TestFinished ( TestResult result )
69
69
{
70
70
Result = result ;
71
71
72
- Update ( ) ;
72
+ TestFinished ( ) ;
73
73
}
74
74
75
- abstract public void Update ( ) ;
75
+ abstract public void TestFinished ( ) ;
76
76
}
77
77
}
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ public void Run ()
58
58
Runner . Run ( Suite ) ;
59
59
}
60
60
61
- public override void Update ( )
61
+ public override void TestFinished ( )
62
62
{
63
63
int positive = Result . PassCount + Result . InconclusiveCount ;
64
64
int failure = Result . FailCount ;
Original file line number Diff line number Diff line change @@ -829,11 +829,11 @@ public override void TestFinished (ITestResult r)
829
829
if ( ts != null ) {
830
830
TestSuiteElement tse ;
831
831
if ( suite_elements . TryGetValue ( ts , out tse ) )
832
- tse . Update ( result ) ;
832
+ tse . TestFinished ( result ) ;
833
833
} else {
834
834
TestMethod tc = result . Test as TestMethod ;
835
835
if ( tc != null )
836
- case_elements [ tc ] . Update ( result ) ;
836
+ case_elements [ tc ] . TestFinished ( result ) ;
837
837
}
838
838
} ) ;
839
839
}
You can’t perform that action at this time.
0 commit comments