Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit a6b1286

Browse files
committed
Upgrade test proj to net46, enable .NET Core + convert Explicit to Ignore
1 parent 41caad4 commit a6b1286

27 files changed

+36
-38
lines changed

tests/ServiceStack.Redis.Tests.Sentinel/Redis3SentinelSetupTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace ServiceStack.Redis.Tests.Sentinel
55
{
66
[TestFixture, Category("Integration")]
7-
[Explicit("Requires cloud setup")]
7+
[Ignore("Requires cloud setup")]
88
public class Redis3SentinelSetupTests
99
: RedisSentinelTestBase
1010
{

tests/ServiceStack.Redis.Tests/Benchmarks/DoubleSerializationBenchmarks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace ServiceStack.Redis.Tests.Benchmarks
1010
{
11-
[TestFixture, Explicit]
11+
[TestFixture, Ignore("Benchmark")]
1212
public class DoubleSerializationBenchmarks
1313
{
1414
const int times = 100000;

tests/ServiceStack.Redis.Tests/DiagnosticTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace ServiceStack.Redis.Tests
77
{
8-
[Explicit("Diagnostic only Integration Test")]
8+
[Ignore("Diagnostic only Integration Test")]
99
[TestFixture]
1010
public class DiagnosticTests
1111
{

tests/ServiceStack.Redis.Tests/Examples/BestPractice/BlogPostBestPractice.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ public List<T> Inject<T>(IEnumerable<T> entities)
273273
#endregion
274274

275275

276-
[TestFixture, Explicit, Category("Integration")]
276+
[TestFixture, Ignore("Integration"), Category("Integration")]
277277
public class BlogPostBestPractice
278278
{
279279
readonly RedisClient redisClient = new RedisClient(TestConfig.SingleHost);

tests/ServiceStack.Redis.Tests/Examples/BestPractice/BlogPostMigrations.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public enum BlogPostType
5252

5353
namespace ServiceStack.Redis.Tests.Examples.BestPractice
5454
{
55-
[TestFixture, Explicit, Category("Integration")]
55+
[TestFixture, Ignore("Integration"), Category("Integration")]
5656
public class BlogPostMigrations
5757
{
5858
readonly RedisClient redisClient = new RedisClient(TestConfig.SingleHost);

tests/ServiceStack.Redis.Tests/Examples/BlogPostExample.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public class BlogPostComment
6464
}
6565

6666

67-
[TestFixture, Explicit, Category("Integration")]
67+
[TestFixture, Ignore("Integration"), Category("Integration")]
6868
public class BlogPostExample
6969
{
7070
readonly RedisClient redis = new RedisClient(TestConfig.SingleHost);

tests/ServiceStack.Redis.Tests/Examples/ServiceStack_Redis_UseCase.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace ServiceStack.Redis.Tests.Examples
66
{
7-
[TestFixture, Explicit]
7+
[TestFixture, Ignore("Integration")]
88
public class ServiceStack_Redis_UseCase
99
{
1010
public class Todo

tests/ServiceStack.Redis.Tests/Examples/SimpleExamples.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
namespace ServiceStack.Redis.Tests.Examples
1010
{
11-
[TestFixture, Explicit, Category("Integration")]
11+
[TestFixture, Ignore("Integration"), Category("Integration")]
1212
public class SimpleExamples
1313
{
1414
readonly RedisClient redis = new RedisClient(TestConfig.SingleHost);

tests/ServiceStack.Redis.Tests/Examples/SimpleLocks.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace ServiceStack.Redis.Tests.Examples
99
{
10-
[TestFixture, Explicit, Category("Integration")]
10+
[TestFixture, Ignore("Integration"), Category("Integration")]
1111
public class SimpleLocks
1212
{
1313
[SetUp]

tests/ServiceStack.Redis.Tests/Examples/SimplePubSub.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace ServiceStack.Redis.Tests.Examples
88
{
9-
[TestFixture, Explicit, Category("Integration")]
9+
[TestFixture, Ignore("Integration"), Category("Integration")]
1010
public class SimplePubSub
1111
{
1212
const string ChannelName = "SimplePubSubCHANNEL";

0 commit comments

Comments
 (0)