//----------------------------------------------------------- // Copyright (c) Microsoft Corporation. All Rights Reserved. //----------------------------------------------------------- #include "pch.h" namespace TestHostApp { /// /// Initializes the singleton application object. This is the first line of authored code /// executed, and as such is the logical equivalent of main() or WinMain(). /// App::App() { InitializeComponent(); } /// /// Invoked when the application is launched normally by the end user. Other entry points /// will be used such as when the application is launched to open a specific file. /// /// Details about the launch request and process. void App::OnLaunched(Windows::ApplicationModel::Activation::LaunchActivatedEventArgs ^ e) { Windows::UI::Xaml::Window::Current->Activate(); Microsoft::VisualStudio::TestPlatform::TestExecutor::WinRTCore::UnitTestClient::Run(e->Arguments); } }