Reputation: 37
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
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