fix: remove duplicate folder

This commit is contained in:
I1nur 2025-02-10 21:18:32 +04:00
parent f4c2fdb4a6
commit d959acdf1c
11 changed files with 3 additions and 30 deletions

View File

@ -16,9 +16,9 @@ internal class ClientDataModelTests
[Test]
public void IdIsNullOrEmptyTest()
{
client = CreateDataModel(null, "fio", "+7-777-777-77-77");
client = CreateDataModel(null, "Fio Fio Fio", "+7-777-777-77-77");
Assert.That(() => client.Validate(), Throws.TypeOf<ValidationFieldException>());
client = CreateDataModel(string.Empty, "fio", "+7-777-777-77-77");
client = CreateDataModel(string.Empty, "Fio Fio Fio", "+7-777-777-77-77");
Assert.That(() => client.Validate(), Throws.TypeOf<ValidationFieldException>());
}

View File

@ -17,7 +17,7 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\SoftwareInstallationContracts\SoftwareInstallationContracts\SoftwareInstallationContracts.csproj" />
<ProjectReference Include="..\SoftwareInstallationContracts\SoftwareInstallationContracts\SoftwareInstallationContracts.csproj" />
</ItemGroup>
<ItemGroup>

View File

@ -1,27 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="NUnit.Analyzers" Version="4.3.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\SoftwareInstallationContracts\SoftwareInstallationContracts\SoftwareInstallationContracts.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="NUnit.Framework" />
</ItemGroup>
</Project>