Advertisement
Guest User

Untitled

a guest
Oct 24th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. public static void RunTests()
  2. {
  3. Test("hello world", new[] { "hello", "world" });
  4. Test("'hello' world", new[] { "hello", "world" });
  5. Test("hello world", new[] { "hello", "world" });
  6. Test("'hello' '' ", new[] { "hello", "" });
  7. Test("\"hello world\"", new[] { "hello world" });
  8. Test("'hello world'", new[] { "hello world" });
  9. Test("hello \"world", new[] { "hello", "world" });
  10. Test("\"'hello world'\"", new[] { "'hello world'" });
  11. Test("'\"hello world\"'", new[] { "\"hello world\"" });
  12. Test(" 'Hi!' ", new[] {"Hi!"});
  13. Test(" ", new string[0]);
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement