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 ?

https://visualstudio.uservoice.com/forums/330519-team-services/suggestions/10102809-include-traits-and-other-attributes-to-vstest-cons

it says update 2 visual studio 2015 fixed issue


Comments

Popular posts from this blog

c - Bitwise operation with (signed) enum value -

xslt - Unnest parent nodes by child node -

YouTubePlayerFragment cannot be cast to android.support.v4.app.Fragment -