Gang YIN
Gang YIN

Reputation: 2567

Is it possible to integrate the google test into TFS?

My company has been using the TFS to maintain source codes, tasks and requirements, etc. Also We've made all the test cases using gtest (C++ is heavily used in our company). Now we want to make sure all our requirements are covered by test cases.

So, is it possible to integrate the gtest into the TFS? By saying that, we want to be able to know how many cases are linked to a requirement (and vice versa), whenever any cases failed, we shall be able to know which requirement is compromised.

Any suggestions will be appreciated:)

Upvotes: 2

Views: 782

Answers (1)

Betty
Betty

Reputation: 9189

Upgrade to VS2012/TFS2012, there is a new extensibility feature that allows 3rd party testing frameworks to be integrated. It appears someone has made one for gtest.

http://coolthingoftheday.blogspot.co.nz/2012/10/gtest-c-unit-testing-test-adapter-for.html

Upvotes: 1

Related Questions