mirror of
https://github.com/spacebarchat/server.git
synced 2026-06-07 17:31:47 +00:00
15 lines
409 B
C#
15 lines
409 B
C#
namespace Spacebar.Tests.Extensions;
|
|
|
|
public static class AssertExtensions {
|
|
extension(Assert) {
|
|
public static void StringNotNullOrEmpty(string? str) {
|
|
Assert.NotNull(str);
|
|
Assert.NotEqual("", str);
|
|
}
|
|
|
|
public static void StringNotNullOrWhitespace(string? str) {
|
|
StringNotNullOrEmpty(str);
|
|
Assert.Matches(".+", str);
|
|
}
|
|
}
|
|
} |