user2074437
user2074437

Reputation: 37

Launching a windows metro app programmatically

I am new to testing. I have been asked to perform functional testing for a windows metro style application. Is there any way of launching/deploying/re deploying a windows metro application programmatically using C# in a local machine environment?

Also I would like to know if a windows metro app in C# language is considered native or hybrid?

Upvotes: 0

Views: 1717

Answers (1)

James McNellis
James McNellis

Reputation: 354969

Instantiate the activation manager and call IApplicationActivationManager::ActivateInstance. You can find out all about how to do this in "Automating the testing of Windows 8 apps" (that article includes a complete sample).

Upvotes: 1

Related Questions