Skip to content

Commit 4022d40

Browse files
committed
add dummy test for client testing
1 parent 53db073 commit 4022d40

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

tests/NRedisStack.Tests/TokenBasedAuthentication/AuthenticationTests.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ public class AuthenticationTests : AbstractNRedisStackTest
1616
public AuthenticationTests(RedisFixture redisFixture) : base(redisFixture) { }
1717

1818
[TargetEnvironment("standalone-entraid-acl")]
19+
1920
public void TestTokenBasedAuthentication()
2021
{
2122
Assert.True(new FaultInjectorClient().TriggerActionAsync("enable_entraid", new Dictionary<string, object>()).Wait(5000), "Entraid could not be enabled this time!!!");
@@ -53,5 +54,11 @@ public void TestTokenBasedAuthentication()
5354
Assert.Equal(1, res1.TotalResults);
5455
Assert.Equal(value, res1.Documents[0][field]);
5556
}
57+
58+
[Fact]
59+
public void DummyTest()
60+
{
61+
Assert.True(true);
62+
}
5663
}
5764
}

0 commit comments

Comments
 (0)