Skip to content

Commit

Permalink
[Remove] appveyor
Browse files Browse the repository at this point in the history
[Add] GH action: codeql
  • Loading branch information
samatrhea committed Nov 19, 2023
1 parent 08b934e commit 435e6be
Show file tree
Hide file tree
Showing 18 changed files with 134 additions and 142 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: "CodeQL"

on:
push:
branches:
- '**'
tags-ignore:
- '*'
pull_request:
schedule:
- cron: '42 2 * * 3'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Setup .NET Core
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}

- name: Install dependencies
run: dotnet restore COMET-WebServices.sln

- name: Build
run: dotnet build COMET-WebServices.sln --no-restore

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
29 changes: 29 additions & 0 deletions CDP4Authentication.Tests/CDP4Authentication.Tests.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Company>RHEA System S.A.</Company>
<Title>CDP4Authentication.Tests</Title>
<Description>CDP4-COMET Data-Model Object Relational Mapping</Description>
<Copyright>Copyright © RHEA System S.A.</Copyright>
<Authors>Sam Gerené, Alex Vorobiev, Alexander van Delft</Authors>
<Configurations>Debug;Release</Configurations>
<LangVersion>latest</LangVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="Moq" Version="4.20.69" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit.Console" Version="3.16.3" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\CDP4Authentication\CDP4Authentication.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
// </copyright>
// --------------------------------------------------------------------------------------------------------------------

namespace CDP4Orm.Tests
namespace CDP4Authentication.Tests
{
using System;

Expand Down
2 changes: 1 addition & 1 deletion CDP4Authentication/CDP4Authentication.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Version>8.0.0</Version>
<Description>CDP4-COMET Library to support the implementation of authentication</Description>
<Copyright>Copyright © RHEA System S.A.</Copyright>
<Authors>Sam, Merlin, Alex, Naron, Alexander</Authors>
<Authors>Sam Gerené, Alex Vorobiev, Alexander van Delft</Authors>
<RepositoryUrl>https://github.com/RHEAGROUP/CDP4-SDK-Community-Edition.git</RepositoryUrl>
<Configurations>Debug;Release</Configurations>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Version>8.0.0</Version>
<Description>CDP4-COMET Database authentication</Description>
<Copyright>Copyright © RHEA System S.A.</Copyright>
<Authors>Sam, Merlin, Alex, Naron, Alexander</Authors>
<Authors>Sam Gerené, Alex Vorobiev, Alexander van Delft</Authors>
<Configurations>Debug;Release</Configurations>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<LangVersion>latest</LangVersion>
Expand Down
3 changes: 1 addition & 2 deletions CDP4Orm.Tests/CDP4Orm.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Title>CDP4Orm-CE.Tests</Title>
<Description>CDP4-COMET Data-Model Object Relational Mapping</Description>
<Copyright>Copyright © RHEA System S.A.</Copyright>
<Authors>Sam, Merlin, Alex, Naron, Alexander</Authors>
<Authors>Sam Gerené, Alex Vorobiev, Alexander van Delft</Authors>
<Configurations>Debug;Release</Configurations>
<LangVersion>latest</LangVersion>
</PropertyGroup>
Expand All @@ -23,7 +23,6 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\CDP4Authentication\CDP4Authentication.csproj" />
<ProjectReference Include="..\CDP4Orm\CDP4Orm.csproj" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion CDP4Orm/CDP4Orm.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Version>8.0.0</Version>
<Description>CDP4-COMET Data-Model Object Relational Mapping</Description>
<Copyright>Copyright © RHEA System S.A.</Copyright>
<Authors>Sam, Merlin, Alex, Naron, Alexander</Authors>
<Authors>Sam Gerené, Alex Vorobiev, Alexander van Delft</Authors>
<Configurations>Debug;Release</Configurations>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<LangVersion>latest</LangVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<TargetFramework>net8.0</TargetFramework>
<Company>RHEA System S.A.</Company>
<Title>CDP4WspDatabaseAuthentication.Tests</Title>
<Description>CDP4-COMET WSP Database authentication Tests</Description>
<Description>CDP4-COMET WSP Database authentication Tests</Description>
<Copyright>Copyright © RHEA System S.A.</Copyright>
<Authors>Sam, Merlin, Alex, Naron, Alexander</Authors>
<Authors>Sam Gerené, Alex Vorobiev, Alexander van Delft</Authors>
<Configurations>Debug;Release</Configurations>
<LangVersion>latest</LangVersion>
</PropertyGroup>
Expand All @@ -22,9 +22,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\CDP4Authentication\CDP4Authentication.csproj" />
<ProjectReference Include="..\CDP4Orm\CDP4Orm.csproj" />
<ProjectReference Include="..\CDP4WSPDatabaseAuthentication\CDP4WspDatabaseAuthentication.csproj" />
<ProjectReference Include="..\CDP4WspDatabaseAuthentication\CDP4WspDatabaseAuthentication.csproj" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,9 @@ namespace CDP4WspDatabaseAuthentication.Tests

using NUnit.Framework;


[TestFixture]
public class EncryptionUtilsTestFixture
public class WspEncryptionUtilsTestFixture
{
[Test]
public void VerifyThatWspPasswordCompareWorks()
Expand All @@ -38,14 +39,14 @@ public void VerifyThatWspPasswordCompareWorks()
var salt = EncryptionUtils.GenerateRandomSaltString();
var serverSalt = EncryptionUtils.GenerateRandomSaltString();

var encryptedPassword = CDP4WspDatabaseAuthentication.EncryptionUtils.BuildWspSaltedString(password,
var encryptedPassword = WspEncryptionUtils.BuildWspSaltedString(password,
salt, serverSalt);

const string passwordToTest = "pass";
const string wrongPasswordToTest = "pass1";

Assert.IsTrue(CDP4WspDatabaseAuthentication.EncryptionUtils.CompareWspSaltedString(passwordToTest, encryptedPassword, salt, serverSalt));
Assert.IsFalse(CDP4WspDatabaseAuthentication.EncryptionUtils.CompareWspSaltedString(wrongPasswordToTest, encryptedPassword, salt, serverSalt));
Assert.IsTrue(WspEncryptionUtils.CompareWspSaltedString(passwordToTest, encryptedPassword, salt, serverSalt));
Assert.IsFalse(WspEncryptionUtils.CompareWspSaltedString(wrongPasswordToTest, encryptedPassword, salt, serverSalt));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Version>8.0.0</Version>
<Description>CDP4-COMET WSP Database authentication</Description>
<Copyright>Copyright © RHEA System S.A.</Copyright>
<Authors>Sam, Merlin, Alex, Naron, Alexander</Authors>
<Authors>Sam Gerené, Alex Vorobiev, Alexander van Delft</Authors>
<Configurations>Debug;Release</Configurations>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<LangVersion>latest</LangVersion>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private bool ValidatePassword(string password, AuthenticationPerson person)

foreach (var serverSalt in serverSalts)
{
result = EncryptionUtils.CompareWspSaltedString(password, person.Password, person.Salt, serverSalt);
result = WspEncryptionUtils.CompareWspSaltedString(password, person.Password, person.Salt, serverSalt);

if (result)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="EncryptionUtils.cs" company="RHEA System S.A.">
// <copyright file="WspEncryptionUtils.cs" company="RHEA System S.A.">
// Copyright (c) 2015-2023 RHEA System S.A.
//
// Author: Sam Gerené, Alex Vorobiev, Alexander van Delft, Nathanael Smiechowski, Antoine Théate
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="EncryptionUtils.cs" company="RHEA System S.A.">
// <copyright file="WspEncryptionUtils.cs" company="RHEA System S.A.">
// Copyright (c) 2015-2023 RHEA System S.A.
//
// Author: Sam Gerené, Alex Vorobiev, Alexander van Delft, Nathanael Smiechowski, Antoine Théate
Expand Down Expand Up @@ -31,7 +31,7 @@ namespace CDP4WspDatabaseAuthentication
/// <summary>
/// Provides static helper methods to help with encryption
/// </summary>
public static class EncryptionUtils
public static class WspEncryptionUtils
{
/// <summary>
/// Compares the input string with an encrypted string. (WSP specific)
Expand Down
58 changes: 32 additions & 26 deletions COMET-WebServices.sln
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30309.148
# Visual Studio Version 17
VisualStudioVersion = 17.8.34309.116
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CDP4Orm", "CDP4Orm\CDP4Orm.csproj", "{D2466CAE-984C-4450-A2C2-3A5FC2CC0275}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CDP4Orm.Tests", "CDP4Orm.Tests\CDP4Orm.Tests.csproj", "{8BB0FE1D-93E7-4206-95EC-845BF6943C16}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CDP4Authentication", "CDP4Authentication\CDP4Authentication.csproj", "{EDFF68B2-6F44-47F6-9F72-6BC3AFC6A53D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CDP4DatabaseAuthentication", "CDP4DatabaseAuthentication\CDP4DatabaseAuthentication.csproj", "{59581438-2CD6-4498-B000-53125BEF5958}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CDP4Authentication", "CDP4Authentication\CDP4Authentication.csproj", "{EDFF68B2-6F44-47F6-9F72-6BC3AFC6A53D}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CDP4WspDatabaseAuthentication", "CDP4WspDatabaseAuthentication\CDP4WspDatabaseAuthentication.csproj", "{E6245C47-96BA-40D3-9D5E-9114E175169F}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CometServer", "CometServer\CometServer.csproj", "{8FC18E8E-D178-4784-A653-973897B57328}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CDP4WspDatabaseAuthentication.Tests", "CDP4WspDatabaseAuthentication.Tests\CDP4WspDatabaseAuthentication.Tests.csproj", "{D95B61F1-4F95-4F7F-8C95-7B809A83FDEF}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CometServer.Tests", "CometServer.Tests\CometServer.Tests.csproj", "{1E20A4F3-D126-4148-877C-64C33121D2B4}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CDP4Orm", "CDP4Orm\CDP4Orm.csproj", "{D2466CAE-984C-4450-A2C2-3A5FC2CC0275}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CDP4WspDatabaseAuthentication", "CDP4WSPDatabaseAuthentication\CDP4WspDatabaseAuthentication.csproj", "{E6245C47-96BA-40D3-9D5E-9114E175169F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CDP4Orm.Tests", "CDP4Orm.Tests\CDP4Orm.Tests.csproj", "{8BB0FE1D-93E7-4206-95EC-845BF6943C16}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CDP4WspDatabaseAuthentication.Tests", "CDP4WspDatabaseAuthentication.Tests\CDP4WspDatabaseAuthentication.Tests.csproj", "{D95B61F1-4F95-4F7F-8C95-7B809A83FDEF}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CometServer", "CometServer\CometServer.csproj", "{8FC18E8E-D178-4784-A653-973897B57328}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "CometServer.Tests", "CometServer.Tests\CometServer.Tests.csproj", "{1E20A4F3-D126-4148-877C-64C33121D2B4}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{36A5DB27-45CB-4EF6-80F9-4F1C18F266AF}"
ProjectSection(SolutionItems) = preProject
Expand All @@ -31,12 +31,30 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
README.md = README.md
EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CDP4Authentication.Tests", "CDP4Authentication.Tests\CDP4Authentication.Tests.csproj", "{551D1D98-92D6-4391-ADB8-448BC9219330}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{EDFF68B2-6F44-47F6-9F72-6BC3AFC6A53D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EDFF68B2-6F44-47F6-9F72-6BC3AFC6A53D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EDFF68B2-6F44-47F6-9F72-6BC3AFC6A53D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EDFF68B2-6F44-47F6-9F72-6BC3AFC6A53D}.Release|Any CPU.Build.0 = Release|Any CPU
{59581438-2CD6-4498-B000-53125BEF5958}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{59581438-2CD6-4498-B000-53125BEF5958}.Debug|Any CPU.Build.0 = Debug|Any CPU
{59581438-2CD6-4498-B000-53125BEF5958}.Release|Any CPU.ActiveCfg = Release|Any CPU
{59581438-2CD6-4498-B000-53125BEF5958}.Release|Any CPU.Build.0 = Release|Any CPU
{E6245C47-96BA-40D3-9D5E-9114E175169F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E6245C47-96BA-40D3-9D5E-9114E175169F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E6245C47-96BA-40D3-9D5E-9114E175169F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E6245C47-96BA-40D3-9D5E-9114E175169F}.Release|Any CPU.Build.0 = Release|Any CPU
{D95B61F1-4F95-4F7F-8C95-7B809A83FDEF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D95B61F1-4F95-4F7F-8C95-7B809A83FDEF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D95B61F1-4F95-4F7F-8C95-7B809A83FDEF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D95B61F1-4F95-4F7F-8C95-7B809A83FDEF}.Release|Any CPU.Build.0 = Release|Any CPU
{D2466CAE-984C-4450-A2C2-3A5FC2CC0275}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D2466CAE-984C-4450-A2C2-3A5FC2CC0275}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D2466CAE-984C-4450-A2C2-3A5FC2CC0275}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -45,14 +63,6 @@ Global
{8BB0FE1D-93E7-4206-95EC-845BF6943C16}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8BB0FE1D-93E7-4206-95EC-845BF6943C16}.Release|Any CPU.ActiveCfg = Release|Any CPU
{8BB0FE1D-93E7-4206-95EC-845BF6943C16}.Release|Any CPU.Build.0 = Release|Any CPU
{59581438-2CD6-4498-B000-53125BEF5958}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{59581438-2CD6-4498-B000-53125BEF5958}.Debug|Any CPU.Build.0 = Debug|Any CPU
{59581438-2CD6-4498-B000-53125BEF5958}.Release|Any CPU.ActiveCfg = Release|Any CPU
{59581438-2CD6-4498-B000-53125BEF5958}.Release|Any CPU.Build.0 = Release|Any CPU
{EDFF68B2-6F44-47F6-9F72-6BC3AFC6A53D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{EDFF68B2-6F44-47F6-9F72-6BC3AFC6A53D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{EDFF68B2-6F44-47F6-9F72-6BC3AFC6A53D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{EDFF68B2-6F44-47F6-9F72-6BC3AFC6A53D}.Release|Any CPU.Build.0 = Release|Any CPU
{8FC18E8E-D178-4784-A653-973897B57328}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{8FC18E8E-D178-4784-A653-973897B57328}.Debug|Any CPU.Build.0 = Debug|Any CPU
{8FC18E8E-D178-4784-A653-973897B57328}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand All @@ -61,14 +71,10 @@ Global
{1E20A4F3-D126-4148-877C-64C33121D2B4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1E20A4F3-D126-4148-877C-64C33121D2B4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1E20A4F3-D126-4148-877C-64C33121D2B4}.Release|Any CPU.Build.0 = Release|Any CPU
{E6245C47-96BA-40D3-9D5E-9114E175169F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E6245C47-96BA-40D3-9D5E-9114E175169F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E6245C47-96BA-40D3-9D5E-9114E175169F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E6245C47-96BA-40D3-9D5E-9114E175169F}.Release|Any CPU.Build.0 = Release|Any CPU
{D95B61F1-4F95-4F7F-8C95-7B809A83FDEF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{D95B61F1-4F95-4F7F-8C95-7B809A83FDEF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D95B61F1-4F95-4F7F-8C95-7B809A83FDEF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D95B61F1-4F95-4F7F-8C95-7B809A83FDEF}.Release|Any CPU.Build.0 = Release|Any CPU
{551D1D98-92D6-4391-ADB8-448BC9219330}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{551D1D98-92D6-4391-ADB8-448BC9219330}.Debug|Any CPU.Build.0 = Debug|Any CPU
{551D1D98-92D6-4391-ADB8-448BC9219330}.Release|Any CPU.ActiveCfg = Release|Any CPU
{551D1D98-92D6-4391-ADB8-448BC9219330}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
2 changes: 1 addition & 1 deletion CometServer.Tests/CometServer.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Title>CometServer-CE.Tests</Title>
<Description>Unit tests Library for the Comet Server</Description>
<Copyright>Copyright © RHEA System S.A.</Copyright>
<Authors>Sam, Alex, Alexander</Authors>
<Authors>Sam Gerené, Alex Vorobiev, Alexander van Delft</Authors>
<Configurations>Debug;Release</Configurations>
<LangVersion>latest</LangVersion>
</PropertyGroup>
Expand Down
6 changes: 0 additions & 6 deletions CometServer.Tests/OperationProcessorTestFixture.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ namespace CometServer.Tests
using CometServer.Services.Operations.SideEffects;
using CometServer.Services.Protocol;

using Microsoft.Extensions.Logging;

using Moq;

using Npgsql;
Expand Down Expand Up @@ -86,8 +84,6 @@ public class OperationProcessorTestFixture

private const string QuantityKindTypeString = "QuantityKind";

private Mock<ILogger<OperationSideEffectProcessor>> logger;

private readonly IRequestUtils requestUtils = new RequestUtils { QueryParameters = new QueryParameters() };

private readonly OperationSideEffectProcessor operationSideEffectProcessor = new OperationSideEffectProcessor(new List<IOperationSideEffect>());
Expand All @@ -109,8 +105,6 @@ public class OperationProcessorTestFixture

private OperationProcessor operationProcessor;

private CdpPostOperation operation;

[SetUp]
public void TestSetup()
{
Expand Down
Loading

0 comments on commit 435e6be

Please sign in to comment.