Skip to content

Instantly share code, notes, and snippets.

@jmaxxz
Last active November 1, 2019 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jmaxxz/23edc831c618839f8b2179ec027d07c3 to your computer and use it in GitHub Desktop.
Save jmaxxz/23edc831c618839f8b2179ec027d07c3 to your computer and use it in GitHub Desktop.
using NUnit.Framework;
namespace Demo.Tests
{
public class BugInTestRunner
{
[TestCase("\u0000")] // works
[TestCase("\u0001")] // bug
[TestCase("\u0002")] // bug
[TestCase("\u0003")] // bug
[TestCase("\u0004")] // bug
[TestCase("\u0005")] // bug
[TestCase("\u0006")] // bug
[TestCase("\uE05A")] // works
[TestCase("\u0007")] // works
public void BreakoutOfStream(string payload)
{
Assert.IsNotEmpty("Test");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment