unit testing - vstest.console.exe not generating Test Attributes (Owner, Priority, TestCategory) in .trx file -
i have test methods given attributes owner, priority, testcategory follows
<testmethod()> <owner("madhu")> <priority(1)> <testcategory("mycategory")> public sub sampletest() assert.areequal("0", "0") end sub
when run test using mstest.exe these arrtibutes appearing in generated trx file if run vstest.console.exe not coming.
i have checked vstest comands, not find 1 this.
am missing anything, or feature doesn't exist in vstest ?
it says update 2 visual studio 2015 fixed issue
Comments
Post a Comment