Skip to content

Commit 39b0aad

Browse files
vazoisCopilot
andcommitted
Add missing [AllureNUnit] attributes to cluster sub-project test fixtures
Added [AllureNUnit] and [TestFixture] to ClusterReplicationTLS, ClusterReplicationAsyncReplay, ClusterReplicationShardedLog, and ClusterReplicationDisklessSyncShardedLog to pass CI Allure wiring check. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent faf3e97 commit 39b0aad

4 files changed

Lines changed: 10 additions & 0 deletions

File tree

test/Garnet.test.cluster.multilog/MultiLogTests/ClusterReplicationDisklessSyncShardedLog.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,13 @@
44
using System.Collections.Generic;
55
using System.Linq;
66
using System.Reflection;
7+
using Allure.NUnit;
78
using NUnit.Framework;
89

910
namespace Garnet.test.cluster.MultiLogTests
1011
{
1112
[TestFixture]
13+
[AllureNUnit]
1214
[NonParallelizable]
1315
public class ClusterReplicationDisklessSyncShardedLog : ClusterReplicationDisklessSyncTests
1416
{

test/Garnet.test.cluster.multilog/MultiLogTests/ClusterReplicationShardedLog.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@
88
using System.Reflection;
99
using System.Text;
1010
using System.Threading.Tasks;
11+
using Allure.NUnit;
1112
using NUnit.Framework;
1213
using NUnit.Framework.Legacy;
1314
using StackExchange.Redis;
1415

1516
namespace Garnet.test.cluster.MultiLogTests
1617
{
1718
[TestFixture]
19+
[AllureNUnit]
1820
[NonParallelizable]
1921
public class ClusterReplicationShardedLog : ClusterReplicationBaseTests
2022
{

test/Garnet.test.cluster.replication.asyncreplay/ReplicationTests/ClusterReplicationAsyncReplay.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4+
using Allure.NUnit;
45
using NUnit.Framework;
56

67
namespace Garnet.test.cluster
78
{
9+
[TestFixture]
10+
[AllureNUnit]
811
[NonParallelizable]
912
[Ignore("Skip to reduce CI duration.")]
1013
public class ClusterReplicationAsyncReplay : ClusterReplicationBaseTests

test/Garnet.test.cluster.replication.tls/ReplicationTests/ClusterReplicationTLS.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
// Copyright (c) Microsoft Corporation.
22
// Licensed under the MIT license.
33

4+
using Allure.NUnit;
45
using NUnit.Framework;
56

67
namespace Garnet.test.cluster
78
{
9+
[TestFixture]
10+
[AllureNUnit]
811
[NonParallelizable]
912
public class ClusterReplicationTLS : ClusterReplicationBaseTests
1013
{

0 commit comments

Comments
 (0)