0

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?

Zong
  • 6,160
  • 5
  • 32
  • 46
  • 1
    Duplicate of [IApplicationActivationManager::ActivateApplication in C#?](http://stackoverflow.com/questions/12925748/iapplicationactivationmanageractivateapplication-in-c) – James McNellis Feb 20 '13 at 07:02

1 Answers1

1

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).

James McNellis
  • 348,265
  • 75
  • 913
  • 977