namespace AcDream.Content.Tests; /// /// Task 1 scaffold smoke test — becomes the real PakKey test suite in Task 2. /// public class PakKeyTests { [Fact] public void Smoke_ProjectReferencesContentAssembly() { // Any type from AcDream.Content resolves — proves the ProjectReference // and test-project wiring are correct before Task 2 adds real coverage. var key = new TextureKey(); Assert.Equal(0u, key.SurfaceId); } }