I have added a Unit Test App(Universal Windows) Project in Visual Studio 2015. It discovers and runs all test cases in Test Explorer in IDE correctly. But when running MSTest.exe from command line, it gives the message "No tests to execute". Command executed is
MSTest.exe /testcontainer:"F:\Projects\MyUnitTests\bin\Release\MyUnitTests.exe" /resultsfile:F:\testResults.trx
Same result when used 'vstest.console.exe' as suggested here.
Also, most of the examples online provide a dll to mstest. But there is no dll created in outputs in vs2015. Need this to be executed by script in jenkins. Has anyone else faced this issue?