Diff of /Interfaces/+APUnitTestFramework/ComponentModelImplementation.cs [000000] .. [5a4bff]  Maximize  Restore

Switch to side-by-side view

--- a
+++ b/Interfaces/+APUnitTestFramework/ComponentModelImplementation.cs
@@ -0,0 +1,19 @@
+using _3S.CoDeSys.Core.ComponentModel.Implementation;
+using _3S.CoDeSys.Core.Components;
+
+namespace _3S.APUnitTestFramework
+{
+    /// <summary>
+    /// For internal use only.
+    /// </summary>
+    public interface IComponentModelImplementationForUnitTest : IComponentModelImplementation
+    {
+        /// <summary>
+        /// For internal use only.
+        /// </summary>
+        /// <param name="testbed"></param>
+        /// <param name="profileName"></param>
+        /// <param name="profile"></param>
+        void SetupForUnitTest(Testbed testbed, string profileName, Profile profile);
+    }
+}