test(ui): cover decision log ingestion and attribution

Add 34 offline integration checks for partial writes, malformed records, session joins, bounded history, file rotation, and recovery without game or model connections.
This commit is contained in:
0xrsydn 2026-09-22 15:13:45 +07:00
commit 82f2c98e7e
2 changed files with 152 additions and 0 deletions

View file

@ -0,0 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<!-- Compile the same core files without Godot, game assemblies, or test packages. -->
<Compile Include="../Core/**/*.cs" Link="Core/%(Filename)%(Extension)" />
</ItemGroup>
</Project>