コード例 #1
0
        public static void Main()
        {
            TestLibrary.TestLibrary l = new TestLibrary.TestLibrary();
            l.Resolve <ClassImpl>("ClassImpl").Display();

            var t = l.Create();

            t.ForEach(x => Console.WriteLine("Line: " + x));
        }
コード例 #2
0
 public void SetTestLibrary(TestLibrary.TestLibrary testLibrary)
 {
     _testLibrary = testLibrary;
 }
コード例 #3
0
ファイル: ControlChannel.cs プロジェクト: ryihan/windows_sdk
 public ControlChannel(TestLibrary testLibrary)
 {
     _testLibrary = testLibrary;
     SendControlRequest(CONTROL_START_PATH);
 }
コード例 #4
0
ファイル: CommandListener.cs プロジェクト: ryihan/windows_sdk
 public void SetTestLibrary(TestLibrary.TestLibrary testLibrary)
 {
     _adjustCommandExecutor?.SetTestLibrary(testLibrary);
 }