From 738159be2eaca1cb7f37686dc768ec67828f0529 Mon Sep 17 00:00:00 2001 From: konard Date: Sun, 14 Sep 2025 04:21:54 +0300 Subject: [PATCH 1/3] Initial commit with task details for issue #158 Adding CLAUDE.md with task information for AI processing. This file will be removed when the task is complete. Issue: https://github.com/linksplatform/Data.Doublets/issues/158 --- CLAUDE.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md new file mode 100644 index 000000000..67576eb90 --- /dev/null +++ b/CLAUDE.md @@ -0,0 +1,5 @@ +Issue to solve: https://github.com/linksplatform/Data.Doublets/issues/158 +Your prepared branch: issue-158-d4b2d751 +Your prepared working directory: /tmp/gh-issue-solver-1757812817492 + +Proceed. \ No newline at end of file From 89479738693079acebc8253700546b6ee64c0627 Mon Sep 17 00:00:00 2001 From: konard Date: Sun, 14 Sep 2025 04:25:43 +0300 Subject: [PATCH 2/3] Remove scope tests from Data.Doublets repository MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Remove ScopeTests.cs file as these tests belong to Platform.Scopes repository - Remove Platform.Scopes package reference from test project since it's no longer needed - All remaining tests still pass (7/7) Fixes #158 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- .../Platform.Data.Doublets.Tests.csproj | 1 - .../ScopeTests.cs | 56 ------------------- 2 files changed, 57 deletions(-) delete mode 100644 csharp/Platform.Data.Doublets.Tests/ScopeTests.cs diff --git a/csharp/Platform.Data.Doublets.Tests/Platform.Data.Doublets.Tests.csproj b/csharp/Platform.Data.Doublets.Tests/Platform.Data.Doublets.Tests.csproj index 27af73fe0..a81982895 100644 --- a/csharp/Platform.Data.Doublets.Tests/Platform.Data.Doublets.Tests.csproj +++ b/csharp/Platform.Data.Doublets.Tests/Platform.Data.Doublets.Tests.csproj @@ -22,7 +22,6 @@ - diff --git a/csharp/Platform.Data.Doublets.Tests/ScopeTests.cs b/csharp/Platform.Data.Doublets.Tests/ScopeTests.cs deleted file mode 100644 index 028fe9dd6..000000000 --- a/csharp/Platform.Data.Doublets.Tests/ScopeTests.cs +++ /dev/null @@ -1,56 +0,0 @@ -using Xunit; -using Platform.Scopes; -using Platform.Memory; -using Platform.Data.Doublets.Decorators; -using Platform.Reflection; -using Platform.Data.Doublets.Memory.United.Generic; -using TLinkAddress = System.UInt64; - -namespace Platform.Data.Doublets.Tests -{ - public static class ScopeTests - { - [Fact] - public static void SingleDependencyTest() - { - using (var scope = new Scope()) - { - scope.IncludeAssemblyOf(); - var instance = scope.Use(); - Assert.IsType(instance); - } - } - - [Fact] - public static void CascadeDependencyTest() - { - using (var scope = new Scope()) - { - scope.Include(); - scope.Include>(); - var instance = scope.Use>(); - Assert.IsType>(instance); - } - } - - [Fact(Skip = "Would be fixed later.")] - public static void FullAutoResolutionTest() - { - using (var scope = new Scope(autoInclude: true, autoExplore: true)) - { - var instance = scope.Use>(); - Assert.IsType(instance); - } - } - - [Fact] - public static void TypeParametersTest() - { - using (var scope = new Scope>>()) - { - var links = scope.Use>(); - Assert.IsType>(links); - } - } - } -} From a4407eec13541e4e283e7a3a8e4b4598e9bf90fa Mon Sep 17 00:00:00 2001 From: konard Date: Sun, 14 Sep 2025 04:26:24 +0300 Subject: [PATCH 3/3] Remove CLAUDE.md - Claude command completed --- CLAUDE.md | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 CLAUDE.md diff --git a/CLAUDE.md b/CLAUDE.md deleted file mode 100644 index 67576eb90..000000000 --- a/CLAUDE.md +++ /dev/null @@ -1,5 +0,0 @@ -Issue to solve: https://github.com/linksplatform/Data.Doublets/issues/158 -Your prepared branch: issue-158-d4b2d751 -Your prepared working directory: /tmp/gh-issue-solver-1757812817492 - -Proceed. \ No newline at end of file