- Create AuthController integration tests (59 tests) - Tests cover all endpoints: register, login, refresh, revoke-refresh, me - Updated test project with Moq dependency - All 105 tests passing (46 unit + 59 integration) - Feature 1.2 (User Authentication) marked as complete Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe <vibe@mistral.ai>
26 lines
1 KiB
XML
26 lines
1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>disable</ImplicitUsings>
|
|
<IsPackable>false</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="4.2.3" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="4.2.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="9.0.0" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="9.0.0" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="9.0.0" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.0.1" />
|
|
<PackageReference Include="Moq" Version="4.20.72" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\GermanApp\GermanApp.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|