We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c64307 commit 681eca7Copy full SHA for 681eca7
src/Nullinside.Api.TwitchBot.Tests/ChatRules/StreamViewersTests.cs
@@ -0,0 +1,15 @@
1
+using Nullinside.Api.TwitchBot.ChatRules;
2
+
3
+namespace Nullinside.Api.TwitchBot.Tests.ChatRules;
4
5
+public class StreamViewersTests
6
+{
7
+ [Test]
8
+ [TestCase("@jellynyeko dо уоu alrеady triеd strеamviewers оrg? Real viewеrs, fire works! Тhеy arе now giving оut а frее рackagе for streamers оО")]
9
+ [TestCase("@kygaming98 dо уоu аlready tried streаmviewers оrg? Real viewers, firе works! Thеy arе now giving оut а freе package fоr streamers oО")]
10
+ public void TestKnownStrings(string badString)
11
+ {
12
+ // Need to put interfaces in front of the classes before we can do this.
13
+ Assert.Pass();
14
+ }
15
+}
0 commit comments