[5a4bff]: / Interfaces / +APUnitTestFramework / ComponentModelImplementation.cs  Maximize  Restore  History

Download this file

20 lines (18 with data), 603 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
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);
    }
}