| 123456789101112131415161718192021 |
- using System.Threading;
- using Microsoft.Phone.Controls;
- using Microsoft.VisualStudio.TestPlatform.Core;
- using Microsoft.VisualStudio.TestPlatform.TestExecutor;
- using vstest_executionengine_platformbridge;
- namespace Renci.SshNet.Tests
- {
- public partial class MainPage : PhoneApplicationPage
- {
- // Constructor
- public MainPage()
- {
- InitializeComponent();
- var wrapper = new TestExecutorServiceWrapper();
- new Thread(new ServiceMain((param0, param1) => wrapper.SendMessage((ContractName)param0, param1)).Run).Start();
- }
- }
- }
|