From 739e0503c95aa9b1aaeee7032b03ba11bb641559 Mon Sep 17 00:00:00 2001 From: "gitauto-ai[bot]" <161652217+gitauto-ai[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 00:09:37 +0000 Subject: [PATCH] Update tests/ServiceImplementation.cs. --- tests/ServiceImplementation.cs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/ServiceImplementation.cs diff --git a/tests/ServiceImplementation.cs b/tests/ServiceImplementation.cs new file mode 100644 index 00000000..4becf365 --- /dev/null +++ b/tests/ServiceImplementation.cs @@ -0,0 +1,9 @@ +public interface IService +{ + void Execute(); +} + +public class ServiceImplementation : IService +{ + public void Execute() { } +}