-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Beitrag Lucas #1
Open
AlCaponi
wants to merge
1
commit into
main
Choose a base branch
from
LucasNicolasSchulz
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<ImplicitUsings>enable</ImplicitUsings> | ||
<Nullable>enable</Nullable> | ||
|
||
<IsPackable>false</IsPackable> | ||
<IsTestProject>true</IsTestProject> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="coverlet.collector" Version="6.0.0" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.5" /> | ||
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" /> | ||
<PackageReference Include="Moq" Version="4.20.70" /> | ||
<PackageReference Include="xunit" Version="2.5.3" /> | ||
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Using Include="Xunit" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<ProjectReference Include="..\Assessment\Assessment.csproj" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
using Xunit; | ||
using Assessment.Controllers; | ||
using Assessment.Models; | ||
using Microsoft.AspNetCore.Mvc; | ||
|
||
|
||
namespace Assessment.Tests | ||
{ | ||
public class TimelogTypesControllerTests | ||
{ | ||
[Fact] | ||
public void GetTimelogTypes_ReturnsAllItems() | ||
{ | ||
// Arrange: Controller-Instanz wird erstellt. | ||
var controller = new TimelogTypesController(); | ||
|
||
// Act: Die GetTimelogTypes-Methode wird aufgerufen. | ||
var result = controller.GetTimelogTypes(); | ||
|
||
// Assert: Überprüfe, ob das Ergebnis vom korrekten Typ ist und die erwartete Anzahl an Elementen enthält.// Assert | ||
var viewResult = Assert.IsType<ActionResult<List<TimelogTypeResponse>>>(result); | ||
var model = Assert.IsAssignableFrom<List<TimelogTypeResponse>>(viewResult.Value); | ||
Assert.Equal(6, model.Count()); // Es werden 5 Elemente erwartet plus das eine Element was im CreateTimelogType_Validation_Fails_ForInvalidData() erstellt wird. | ||
} | ||
[Fact] | ||
public void GetTimelogType_WithInvalidId_ReturnsNotFound() | ||
{ | ||
// Arrange: Controller-Instanz wird erstellt. | ||
var controller = new TimelogTypesController(); | ||
|
||
// Act: Die GetTimelogType-Methode wird mit einer ungültigen ID aufgerufen. | ||
var result = controller.GetTimelogType(9999); // 999 annehmen, dass diese ID nicht existiert | ||
|
||
// Assert: Überprüfe, ob das Ergebnis ein NotFoundResult ist. | ||
Assert.IsType<NotFoundResult>(result.Result); | ||
} | ||
|
||
[Fact] | ||
public void CreateTimelogType_Validation_Fails_ForInvalidData() | ||
{ | ||
// Arrange: Controller initialisieren und ungültige Testdaten erstellen | ||
var controller = new TimelogTypesController(); | ||
var invalidTimelogType = new TimelogTypeRequest | ||
{ | ||
timelogTypeId = 4, | ||
timelogType = "Valid Timelog Type", | ||
budget = -1 // Negativer Wert | ||
}; | ||
|
||
// Act: Versuche, einen neuen TimelogType mit ungültigen Daten zu erstellen | ||
var result = controller.CreateTimelogType(invalidTimelogType); | ||
|
||
//Todo: Assert: Überprüfe, ob das Ergebnis ein BadRequestObjectResult ist und die Fehlermeldung enthält | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Kein Assert |
||
} | ||
} | ||
} |
5,977 changes: 5,977 additions & 0 deletions
5,977
Assessment.Tests/bin/Debug/net8.0/Assessment.Tests.deps.json
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
18 changes: 18 additions & 0 deletions
18
Assessment.Tests/bin/Debug/net8.0/Assessment.Tests.runtimeconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{ | ||
"runtimeOptions": { | ||
"tfm": "net8.0", | ||
"frameworks": [ | ||
{ | ||
"name": "Microsoft.NETCore.App", | ||
"version": "8.0.0" | ||
}, | ||
{ | ||
"name": "Microsoft.AspNetCore.App", | ||
"version": "8.0.0" | ||
} | ||
], | ||
"configProperties": { | ||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,115 @@ | ||
{ | ||
"runtimeTarget": { | ||
"name": ".NETCoreApp,Version=v6.0", | ||
"signature": "" | ||
}, | ||
"compilationOptions": {}, | ||
"targets": { | ||
".NETCoreApp,Version=v6.0": { | ||
"Assessment/1.0.0": { | ||
"dependencies": { | ||
"Swashbuckle.AspNetCore": "6.2.3" | ||
}, | ||
"runtime": { | ||
"Assessment.dll": {} | ||
} | ||
}, | ||
"Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, | ||
"Microsoft.OpenApi/1.2.3": { | ||
"runtime": { | ||
"lib/netstandard2.0/Microsoft.OpenApi.dll": { | ||
"assemblyVersion": "1.2.3.0", | ||
"fileVersion": "1.2.3.0" | ||
} | ||
} | ||
}, | ||
"Swashbuckle.AspNetCore/6.2.3": { | ||
"dependencies": { | ||
"Microsoft.Extensions.ApiDescription.Server": "3.0.0", | ||
"Swashbuckle.AspNetCore.Swagger": "6.2.3", | ||
"Swashbuckle.AspNetCore.SwaggerGen": "6.2.3", | ||
"Swashbuckle.AspNetCore.SwaggerUI": "6.2.3" | ||
} | ||
}, | ||
"Swashbuckle.AspNetCore.Swagger/6.2.3": { | ||
"dependencies": { | ||
"Microsoft.OpenApi": "1.2.3" | ||
}, | ||
"runtime": { | ||
"lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { | ||
"assemblyVersion": "6.2.3.0", | ||
"fileVersion": "6.2.3.0" | ||
} | ||
} | ||
}, | ||
"Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { | ||
"dependencies": { | ||
"Swashbuckle.AspNetCore.Swagger": "6.2.3" | ||
}, | ||
"runtime": { | ||
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { | ||
"assemblyVersion": "6.2.3.0", | ||
"fileVersion": "6.2.3.0" | ||
} | ||
} | ||
}, | ||
"Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { | ||
"runtime": { | ||
"lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { | ||
"assemblyVersion": "6.2.3.0", | ||
"fileVersion": "6.2.3.0" | ||
} | ||
} | ||
} | ||
} | ||
}, | ||
"libraries": { | ||
"Assessment/1.0.0": { | ||
"type": "project", | ||
"serviceable": false, | ||
"sha512": "" | ||
}, | ||
"Microsoft.Extensions.ApiDescription.Server/3.0.0": { | ||
"type": "package", | ||
"serviceable": true, | ||
"sha512": "sha512-LH4OE/76F6sOCslif7+Xh3fS/wUUrE5ryeXAMcoCnuwOQGT5Smw0p57IgDh/pHgHaGz/e+AmEQb7pRgb++wt0w==", | ||
"path": "microsoft.extensions.apidescription.server/3.0.0", | ||
"hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" | ||
}, | ||
"Microsoft.OpenApi/1.2.3": { | ||
"type": "package", | ||
"serviceable": true, | ||
"sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", | ||
"path": "microsoft.openapi/1.2.3", | ||
"hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" | ||
}, | ||
"Swashbuckle.AspNetCore/6.2.3": { | ||
"type": "package", | ||
"serviceable": true, | ||
"sha512": "sha512-cnzQDn0Le+hInsw2SYwlOhOCPXpYi/szcvnyqZJ12v+QyrLBwAmWXBg6RIyHB18s/mLeywC+Rg2O9ndz0IUNYQ==", | ||
"path": "swashbuckle.aspnetcore/6.2.3", | ||
"hashPath": "swashbuckle.aspnetcore.6.2.3.nupkg.sha512" | ||
}, | ||
"Swashbuckle.AspNetCore.Swagger/6.2.3": { | ||
"type": "package", | ||
"serviceable": true, | ||
"sha512": "sha512-qOF7j1sL0bWm8g/qqHVPCvkO3JlVvUIB8WfC98kSh6BT5y5DAnBNctfac7XR5EZf+eD7/WasvANncTqwZYfmWQ==", | ||
"path": "swashbuckle.aspnetcore.swagger/6.2.3", | ||
"hashPath": "swashbuckle.aspnetcore.swagger.6.2.3.nupkg.sha512" | ||
}, | ||
"Swashbuckle.AspNetCore.SwaggerGen/6.2.3": { | ||
"type": "package", | ||
"serviceable": true, | ||
"sha512": "sha512-+Xq7WdMCCfcXlnbLJVFNgY8ITdP2TRYIlpbt6IKzDw5FwFxdi9lBfNDtcT+/wkKwX70iBBFmXldnnd02/VO72A==", | ||
"path": "swashbuckle.aspnetcore.swaggergen/6.2.3", | ||
"hashPath": "swashbuckle.aspnetcore.swaggergen.6.2.3.nupkg.sha512" | ||
}, | ||
"Swashbuckle.AspNetCore.SwaggerUI/6.2.3": { | ||
"type": "package", | ||
"serviceable": true, | ||
"sha512": "sha512-bCRI87uKJVb4G+KURWm8LQrL64St04dEFZcF6gIM67Zc0Sr/N47EO83ybLMYOvfNdO1DCv8xwPcrz9J/VEhQ5g==", | ||
"path": "swashbuckle.aspnetcore.swaggerui/6.2.3", | ||
"hashPath": "swashbuckle.aspnetcore.swaggerui.6.2.3.nupkg.sha512" | ||
} | ||
} | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
19 changes: 19 additions & 0 deletions
19
Assessment.Tests/bin/Debug/net8.0/Assessment.runtimeconfig.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"runtimeOptions": { | ||
"tfm": "net6.0", | ||
"frameworks": [ | ||
{ | ||
"name": "Microsoft.NETCore.App", | ||
"version": "6.0.0" | ||
}, | ||
{ | ||
"name": "Microsoft.AspNetCore.App", | ||
"version": "6.0.0" | ||
} | ||
], | ||
"configProperties": { | ||
"System.GC.Server": true, | ||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false | ||
} | ||
} | ||
} |
Binary file not shown.
Binary file added
BIN
+462 Bytes
Assessment.Tests/bin/Debug/net8.0/CoverletSourceRootsMapping_Assessment.Tests
Binary file not shown.
Binary file added
BIN
+56.2 KB
Assessment.Tests/bin/Debug/net8.0/Microsoft.AspNetCore.Mvc.Testing.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+77.8 KB
Assessment.Tests/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+133 KB
Assessment.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll
Binary file not shown.
Binary file added
BIN
+94.9 KB
Assessment.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll
Binary file not shown.
Binary file added
BIN
+308 KB
Assessment.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll
Binary file not shown.
Binary file added
BIN
+51.9 KB
Assessment.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll
Binary file not shown.
Binary file added
BIN
+65.4 KB
Assessment.Tests/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll
Binary file not shown.
Binary file added
BIN
+17 KB
Assessment.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll
Binary file not shown.
Binary file added
BIN
+242 KB
Assessment.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll
Binary file not shown.
Binary file added
BIN
+219 KB
Assessment.Tests/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"Assessment, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "C:\\Users\\space\\Assessment\\Assessment" | ||
} |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+84 KB
Assessment.Tests/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll
Binary file not shown.
Binary file added
BIN
+3.55 MB
Assessment.Tests/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll
Binary file not shown.
8 changes: 8 additions & 0 deletions
8
Assessment.Tests/bin/Debug/net8.0/appsettings.Development.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"Logging": { | ||
"LogLevel": { | ||
"Default": "Information", | ||
"Microsoft.AspNetCore": "Warning" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"Logging": { | ||
"LogLevel": { | ||
"Default": "Information", | ||
"Microsoft.AspNetCore": "Warning" | ||
} | ||
}, | ||
"AllowedHosts": "*" | ||
} |
Binary file added
BIN
+15.9 KB
...ent.Tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
Assessment.Tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+20.4 KB
Assessment.Tests/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
Binary file not shown.
Binary file added
BIN
+19.9 KB
...ssment.Tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
Binary file not shown.
Binary file added
BIN
+23 KB
...t.Tests/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
...ent.Tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
Assessment.Tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+20.4 KB
Assessment.Tests/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
Binary file not shown.
Binary file added
BIN
+20.4 KB
...ssment.Tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
Binary file not shown.
Binary file added
BIN
+23.5 KB
...t.Tests/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
...ent.Tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
Assessment.Tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+20.4 KB
Assessment.Tests/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
Binary file not shown.
Binary file added
BIN
+20.4 KB
...ssment.Tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
Binary file not shown.
Binary file added
BIN
+23.5 KB
...t.Tests/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
...ent.Tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
Assessment.Tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+20.4 KB
Assessment.Tests/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
Binary file not shown.
Binary file added
BIN
+20.4 KB
...ssment.Tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
Binary file not shown.
Binary file added
BIN
+23.5 KB
...t.Tests/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
...ent.Tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
Assessment.Tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+20.4 KB
Assessment.Tests/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
Binary file not shown.
Binary file added
BIN
+20.5 KB
...ssment.Tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
Binary file not shown.
Binary file added
BIN
+23.5 KB
...t.Tests/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
...ent.Tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+16.9 KB
Assessment.Tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+21.4 KB
Assessment.Tests/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
Binary file not shown.
Binary file added
BIN
+21 KB
...ssment.Tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
Binary file not shown.
Binary file added
BIN
+24 KB
...t.Tests/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
...ent.Tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
Assessment.Tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+20.9 KB
Assessment.Tests/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
Binary file not shown.
Binary file added
BIN
+20.5 KB
...ssment.Tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
Binary file not shown.
Binary file added
BIN
+23.5 KB
...t.Tests/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
...ent.Tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
Assessment.Tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+20.9 KB
Assessment.Tests/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
Binary file not shown.
Binary file added
BIN
+20.5 KB
...ssment.Tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
Binary file not shown.
Binary file added
BIN
+23.5 KB
...t.Tests/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
Binary file not shown.
Binary file added
BIN
+15.9 KB
....Tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+16.4 KB
Assessment.Tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll
Binary file not shown.
Binary file added
BIN
+20.4 KB
Assessment.Tests/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll
Binary file not shown.
Binary file added
BIN
+20.5 KB
...ent.Tests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll
Binary file not shown.
Binary file added
BIN
+23.5 KB
...ests/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll
Binary file not shown.
Binary file added
BIN
+32.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Antiforgery.dll
Binary file not shown.
Binary file added
BIN
+28.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+23.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll
Binary file not shown.
Binary file added
BIN
+28.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll
Binary file not shown.
Binary file added
BIN
+22.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Core.dll
Binary file not shown.
Binary file added
BIN
+27.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll
Binary file not shown.
Binary file added
BIN
+39.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.dll
Binary file not shown.
Binary file added
BIN
+23.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll
Binary file not shown.
Binary file added
BIN
+30.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authorization.dll
Binary file not shown.
Binary file added
BIN
+22.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Authorization.dll
Binary file not shown.
Binary file added
BIN
+95.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll
Binary file not shown.
Binary file added
BIN
+27.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Forms.dll
Binary file not shown.
Binary file added
BIN
+110 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Server.dll
Binary file not shown.
Binary file added
BIN
+80.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Web.dll
Binary file not shown.
Binary file added
BIN
+132 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.dll
Binary file not shown.
Binary file added
BIN
+32.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+22.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.CookiePolicy.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+39.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll
Binary file not shown.
Binary file added
BIN
+19.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll
Binary file not shown.
Binary file added
BIN
+22.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+20.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll
Binary file not shown.
Binary file added
BIN
+79.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.dll
Binary file not shown.
Binary file added
BIN
+19.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+19.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll
Binary file not shown.
Binary file added
BIN
+52.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.dll
Binary file not shown.
Binary file added
BIN
+19.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HostFiltering.dll
Binary file not shown.
Binary file added
BIN
+23.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+18.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+75.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.dll
Binary file not shown.
Binary file added
BIN
+20.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+83.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+20.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll
Binary file not shown.
Binary file added
BIN
+57.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Connections.dll
Binary file not shown.
Binary file added
BIN
+112 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Extensions.dll
Binary file not shown.
Binary file added
BIN
+36.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Features.dll
Binary file not shown.
Binary file added
BIN
+59.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Results.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+41.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpLogging.dll
Binary file not shown.
Binary file added
BIN
+23.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpOverrides.dll
Binary file not shown.
Binary file added
BIN
+20.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll
Binary file not shown.
Binary file added
BIN
+86.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Identity.dll
Binary file not shown.
Binary file added
BIN
+17.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Localization.Routing.dll
Binary file not shown.
Binary file added
BIN
+24.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Localization.dll
Binary file not shown.
Binary file added
BIN
+16.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Metadata.dll
Binary file not shown.
Binary file added
BIN
+82.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+28.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll
Binary file not shown.
Binary file added
BIN
+339 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Core.dll
Binary file not shown.
Binary file added
BIN
+21.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll
Binary file not shown.
Binary file added
BIN
+29.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll
Binary file not shown.
Binary file added
BIN
+16.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll
Binary file not shown.
Binary file added
BIN
+29.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll
Binary file not shown.
Binary file added
BIN
+23.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll
Binary file not shown.
Binary file added
BIN
+61.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll
Binary file not shown.
Binary file added
BIN
+93.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll
Binary file not shown.
Binary file added
BIN
+59.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll
Binary file not shown.
Binary file added
BIN
+123 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+50.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.OutputCaching.dll
Binary file not shown.
Binary file added
BIN
+28.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.RateLimiting.dll
Binary file not shown.
Binary file added
BIN
+26.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll
Binary file not shown.
Binary file added
BIN
+26.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Razor.dll
Binary file not shown.
Binary file added
BIN
+21.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.RequestDecompression.dll
Binary file not shown.
Binary file added
BIN
+16.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+37.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCaching.dll
Binary file not shown.
Binary file added
BIN
+27.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCompression.dll
Binary file not shown.
Binary file added
BIN
+45.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Rewrite.dll
Binary file not shown.
Binary file added
BIN
+24.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+126 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Routing.dll
Binary file not shown.
Binary file added
BIN
+120 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll
Binary file not shown.
Binary file added
BIN
+123 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.IIS.dll
Binary file not shown.
Binary file added
BIN
+22.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll
Binary file not shown.
Binary file added
BIN
+355 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll
Binary file not shown.
Binary file added
BIN
+34.7 KB
....Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll
Binary file not shown.
Binary file added
BIN
+46.3 KB
...ssment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll
Binary file not shown.
Binary file added
BIN
+41.3 KB
...ent.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll
Binary file not shown.
Binary file added
BIN
+17.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll
Binary file not shown.
Binary file added
BIN
+25.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Session.dll
Binary file not shown.
Binary file added
BIN
+28.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Common.dll
Binary file not shown.
Binary file added
BIN
+81.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Core.dll
Binary file not shown.
Binary file added
BIN
+20.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll
Binary file not shown.
Binary file added
BIN
+19.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.dll
Binary file not shown.
Binary file added
BIN
+30.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.StaticFiles.dll
Binary file not shown.
Binary file added
BIN
+25.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.WebSockets.dll
Binary file not shown.
Binary file added
BIN
+43.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.AspNetCore.WebUtilities.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+22.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Caching.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+19.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Caching.Memory.dll
Binary file not shown.
Binary file added
BIN
+18.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+17.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Binder.dll
Binary file not shown.
Binary file added
BIN
+16.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll
Binary file not shown.
Binary file added
BIN
+16.3 KB
...t.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll
Binary file not shown.
Binary file added
BIN
+17.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll
Binary file not shown.
Binary file added
BIN
+16.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Ini.dll
Binary file not shown.
Binary file added
BIN
+16.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Json.dll
Binary file not shown.
Binary file added
BIN
+18.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll
Binary file not shown.
Binary file added
BIN
+16.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll
Binary file not shown.
Binary file added
BIN
+17.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Xml.dll
Binary file not shown.
Binary file added
BIN
+21.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.dll
Binary file not shown.
Binary file added
BIN
+28.8 KB
...ent.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+16.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.DependencyInjection.dll
Binary file not shown.
Binary file added
BIN
+19.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+21.3 KB
...ests/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+33.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll
Binary file not shown.
Binary file added
BIN
+16.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.dll
Binary file not shown.
Binary file added
BIN
+21.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Features.dll
Binary file not shown.
Binary file added
BIN
+17.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+16.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Composite.dll
Binary file not shown.
Binary file added
BIN
+22.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll
Binary file not shown.
Binary file added
BIN
+18.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Physical.dll
Binary file not shown.
Binary file added
BIN
+22.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll
Binary file not shown.
Binary file added
BIN
+21.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+22.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Hosting.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+74.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Identity.Core.dll
Binary file not shown.
Binary file added
BIN
+33.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Identity.Stores.dll
Binary file not shown.
Binary file added
BIN
+19.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Localization.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+23.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Localization.dll
Binary file not shown.
Binary file added
BIN
+24.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Abstractions.dll
Binary file not shown.
Binary file added
BIN
+17.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Configuration.dll
Binary file not shown.
Binary file added
BIN
+22.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Console.dll
Binary file not shown.
Binary file added
BIN
+16.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Debug.dll
Binary file not shown.
Binary file added
BIN
+17.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.EventLog.dll
Binary file not shown.
Binary file added
BIN
+16.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.EventSource.dll
Binary file not shown.
Binary file added
BIN
+16.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.TraceSource.dll
Binary file not shown.
Binary file added
BIN
+19.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.dll
Binary file not shown.
Binary file added
BIN
+20.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.ObjectPool.dll
Binary file not shown.
Binary file added
BIN
+17.7 KB
...ment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll
Binary file not shown.
Binary file added
BIN
+16.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll
Binary file not shown.
Binary file added
BIN
+30.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.dll
Binary file not shown.
Binary file added
BIN
+23.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.Primitives.dll
Binary file not shown.
Binary file added
BIN
+19.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Extensions.WebEncoders.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+35.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Net.Http.Headers.dll
Binary file not shown.
Binary file added
BIN
+58.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.VisualBasic.Core.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+16.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/Microsoft.Win32.Primitives.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+26.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Collections.Concurrent.dll
Binary file not shown.
Binary file added
BIN
+71.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Collections.Immutable.dll
Binary file not shown.
Binary file added
BIN
+22.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Collections.NonGeneric.dll
Binary file not shown.
Binary file added
BIN
+25.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Collections.Specialized.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+31.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.ComponentModel.Annotations.dll
Binary file not shown.
Binary file added
BIN
+16.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.ComponentModel.DataAnnotations.dll
Binary file not shown.
Binary file added
BIN
+19.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.ComponentModel.EventBasedAsync.dll
Binary file not shown.
Binary file added
BIN
+25.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.ComponentModel.Primitives.dll
Binary file not shown.
Binary file added
BIN
+101 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.ComponentModel.TypeConverter.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+15.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Data.DataSetExtensions.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+19.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Diagnostics.Contracts.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+39.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Diagnostics.DiagnosticSource.dll
Binary file not shown.
Binary file added
BIN
+35.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Diagnostics.EventLog.dll
Binary file not shown.
Binary file added
BIN
+16.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Diagnostics.FileVersionInfo.dll
Binary file not shown.
Binary file added
BIN
+30.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Diagnostics.Process.dll
Binary file not shown.
Binary file added
BIN
+22.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Diagnostics.StackTrace.dll
Binary file not shown.
Binary file added
BIN
+17.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Diagnostics.TextWriterTraceListener.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+27.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Diagnostics.TraceSource.dll
Binary file not shown.
Binary file added
BIN
+28.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Diagnostics.Tracing.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+15.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Globalization.Calendars.dll
Binary file not shown.
Binary file added
BIN
+15.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Globalization.Extensions.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+17.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.IO.Compression.Brotli.dll
Binary file not shown.
Binary file added
BIN
+15.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.IO.Compression.FileSystem.dll
Binary file not shown.
Binary file added
BIN
+16.7 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.IO.Compression.ZipFile.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+20.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.IO.FileSystem.AccessControl.dll
Binary file not shown.
Binary file added
BIN
+17.2 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.IO.FileSystem.DriveInfo.dll
Binary file not shown.
Binary file added
BIN
+15.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.IO.FileSystem.Primitives.dll
Binary file not shown.
Binary file added
BIN
+20.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.IO.FileSystem.Watcher.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+18.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.IO.MemoryMappedFiles.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+18.8 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.IO.Pipes.AccessControl.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+15.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.IO.UnmanagedMemoryStream.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+33.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Net.NetworkInformation.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+19.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Net.WebHeaderCollection.dll
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+19.3 KB
Assessment.Tests/bin/Debug/net8.0/refs/System.Net.WebSockets.Client.dll
Binary file not shown.
Binary file not shown.
Binary file not shown.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Abhängigkeit zu anderen Tests