-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add messages to hook result. #21 #23
Conversation
34879af
to
bd27838
Compare
@@ -44,7 +45,8 @@ public override Message Process(Message request) | |||
if (debuggingEnv != null && debuggingEnv.ToLower().Equals("true")) | |||
{ | |||
// if the runner is launched in DEBUG mode, let the debugger attach. | |||
System.Console.WriteLine("Runner Ready for Debugging at Process ID " + System.Diagnostics.Process.GetCurrentProcess().Id); | |||
Console.WriteLine("Runner Ready for Debugging at Process ID " + | |||
System.Diagnostics.Process.GetCurrentProcess().Id); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can be Process.GetCurrentProcess
since System.Diagnostics
is already in using
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That creates name collision with the method name (Process).
@@ -64,38 +64,6 @@ public void Setup() | |||
}; | |||
} | |||
|
|||
//[BeforeScenario("Foo")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This wasn't commented code :) - this bit of code block was to indicate what is the logic being tested. It was to ease the data setup. Perhaps you can add a line describing such, but i prefer we leave this in place.
@@ -56,42 +56,6 @@ IHookMethod Create(string name, int aggregation = 0, params string[] tags) | |||
}; | |||
} | |||
|
|||
//[AfterScenario("Foo")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This bit of code block was to indicate what is the logic being tested. It was to ease the data setup. Perhaps you can add a line describing such, but i prefer we leave this in place.
@@ -55,43 +55,6 @@ IHookMethod Create(string name, int aggregation = 0, params string[] tags) | |||
}; | |||
} | |||
|
|||
|
|||
//[AfterScenario("Foo")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This bit of code block was to indicate what is the logic being tested. It was to ease the data setup. Perhaps you can add a line describing such, but i prefer we leave this in place.
df6f8d7
to
e0de8dc
Compare
e0de8dc
to
e8c4206
Compare
No description provided.