File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
tests/HydraScript.UnitTests/Domain Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -8,11 +8,11 @@ public class InstructionsTests
88{
99 [ Theory ]
1010 [ ClassData ( typeof ( InstructionsData ) ) ]
11- public void ToStringCorrectTest ( IExecutableInstruction instruction , string expected ) =>
11+ public void ToString_Always_Expected ( IExecutableInstruction instruction , string expected ) =>
1212 Assert . Equal ( expected , instruction . ToString ( ) ) ;
1313
1414 [ Fact ]
15- public void GotoJumpChangedTest ( )
15+ public void SetJump_NewAddress_ValueChanged ( )
1616 {
1717 var @goto = new Goto ( new Label ( "1" ) ) ;
1818 @goto . SetJump ( new Label ( "5" ) ) ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ public class TopDownParserTests
1111
1212 [ Theory ]
1313 [ ClassData ( typeof ( ParserSuccessTestData ) ) ]
14- public void ParserDoesNotThrowTest ( string text )
14+ public void Parse_Always_DoesNotThrow ( string text )
1515 {
1616 var ex = Record . Exception ( ( ) => _parser . Parse ( text ) ) ;
1717 Assert . Null ( ex ) ;
You can’t perform that action at this time.
0 commit comments