You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a program writing a backspace character to console and that causes the testrunner to crash with the message: "System.ArgumentException: hexadecimal value 0x08, is an invalid character."
Here is an example routine witch fails:
using System;
using Machine.Specifications;
namespace Test
{
[Subject("Console")]
public class when_writing_an_backspace_character_to_console
{
Establish context = () => { };
Because of = () => Console.Write("\b");
It should_not_give_an_exeption = () => { };
}
}
I use version 1.0.0 of Machine.Specifications.Runner.Resharper and Resharper 8.2.3.
The text was updated successfully, but these errors were encountered:
I have a program writing a backspace character to console and that causes the testrunner to crash with the message: "System.ArgumentException: hexadecimal value 0x08, is an invalid character."
Here is an example routine witch fails:
using System;
using Machine.Specifications;
namespace Test
{
[Subject("Console")]
public class when_writing_an_backspace_character_to_console
{
Establish context = () => { };
Because of = () => Console.Write("\b");
It should_not_give_an_exeption = () => { };
}
}
I use version 1.0.0 of Machine.Specifications.Runner.Resharper and Resharper 8.2.3.
The text was updated successfully, but these errors were encountered: