-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from AoshiW/modern-.NET
switch to File Scope Namespace, and more
- Loading branch information
Showing
26 changed files
with
1,781 additions
and
1,808 deletions.
There are no files selected for viewing
1,173 changes: 581 additions & 592 deletions
1,173
src/TwitchLib.Communication.Tests/Clients/ClientTestsBase.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
using TwitchLib.Communication.Clients; | ||
using TwitchLib.Communication.Models; | ||
|
||
namespace TwitchLib.Communication.Tests.Clients | ||
namespace TwitchLib.Communication.Tests.Clients; | ||
|
||
public class TcpClientTests : ClientTestsBase<TcpClient> | ||
{ | ||
public class TcpClientTests : ClientTestsBase<TcpClient> | ||
{ | ||
public TcpClientTests() : base(new ClientOptions(useSsl: false)) { } | ||
} | ||
public TcpClientTests() : base(new ClientOptions(useSsl: false)) { } | ||
} |
9 changes: 4 additions & 5 deletions
9
src/TwitchLib.Communication.Tests/Clients/WebSocketClientTests.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
using TwitchLib.Communication.Clients; | ||
|
||
namespace TwitchLib.Communication.Tests.Clients | ||
namespace TwitchLib.Communication.Tests.Clients; | ||
|
||
public class WebSocketClientTests : ClientTestsBase<WebSocketClient> | ||
{ | ||
public class WebSocketClientTests : ClientTestsBase<WebSocketClient> | ||
{ | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/TwitchLib.Communication.Tests/TwitchLib.Communication.Tests.csproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.