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

Switch to unified view

a b/Interfaces/+APUnitTestFramework/ComponentModelImplementation.cs
1
using _3S.CoDeSys.Core.ComponentModel.Implementation;
2
using _3S.CoDeSys.Core.Components;
3
4
namespace _3S.APUnitTestFramework
5
{
6
    /// <summary>
7
    /// For internal use only.
8
    /// </summary>
9
    public interface IComponentModelImplementationForUnitTest : IComponentModelImplementation
10
    {
11
        /// <summary>
12
        /// For internal use only.
13
        /// </summary>
14
        /// <param name="testbed"></param>
15
        /// <param name="profileName"></param>
16
        /// <param name="profile"></param>
17
        void SetupForUnitTest(Testbed testbed, string profileName, Profile profile);
18
    }
19
}