How to associate a Unit Test with respective function in CppUnitTestFramework
Okay, this might sound little too simple, but how do you get particular test/test-sets to show up as unit-tests for a particular function, like when you invoke the same from right-clicking inside function body?
(Run Tests option)
I can get my tests to show up inside 'All Tests' in Test Explorer, and can also run them, but from inside this menu option, I always get 'No tests found to run.
' Here's my unittests.cpp
for reference:
#include "CppUnitTestLogger.h"
#include "CppUnitTest.h"
#include "CalculationObj.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace UnitTests
{
TEST_CLASS(CCalculationObjTest)
{
public:
BEGIN_TEST_METHOD_ATTRIBUTE(CCalculationObj_AdditionTest)
TEST_OWNER(L"OwnerName")
TEST_PRIORITY(1)
END_TEST_METHOD_ATTRIBUTE()
TEST_METHOD(CCalculationObj_AdditionTest)
{
int n1 = 100, n2 = 200;
int nOutPut = 0;
try
{
CCalculationObj calcObj;
calcObj.Addition(n1, n2, &nOutPut);
Assert::AreEqual(nOutPut, 300);
}
catch (const std::exception& e)
{
Logger::WriteMessage(e.what());
}
}
};
}
I'm using VS2015
and am interested in Native Unit Tests Framework
only. Thanks!
visual-studio visual-c++ microsoft-cpp-unit-test
add a comment |
Okay, this might sound little too simple, but how do you get particular test/test-sets to show up as unit-tests for a particular function, like when you invoke the same from right-clicking inside function body?
(Run Tests option)
I can get my tests to show up inside 'All Tests' in Test Explorer, and can also run them, but from inside this menu option, I always get 'No tests found to run.
' Here's my unittests.cpp
for reference:
#include "CppUnitTestLogger.h"
#include "CppUnitTest.h"
#include "CalculationObj.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace UnitTests
{
TEST_CLASS(CCalculationObjTest)
{
public:
BEGIN_TEST_METHOD_ATTRIBUTE(CCalculationObj_AdditionTest)
TEST_OWNER(L"OwnerName")
TEST_PRIORITY(1)
END_TEST_METHOD_ATTRIBUTE()
TEST_METHOD(CCalculationObj_AdditionTest)
{
int n1 = 100, n2 = 200;
int nOutPut = 0;
try
{
CCalculationObj calcObj;
calcObj.Addition(n1, n2, &nOutPut);
Assert::AreEqual(nOutPut, 300);
}
catch (const std::exception& e)
{
Logger::WriteMessage(e.what());
}
}
};
}
I'm using VS2015
and am interested in Native Unit Tests Framework
only. Thanks!
visual-studio visual-c++ microsoft-cpp-unit-test
add a comment |
Okay, this might sound little too simple, but how do you get particular test/test-sets to show up as unit-tests for a particular function, like when you invoke the same from right-clicking inside function body?
(Run Tests option)
I can get my tests to show up inside 'All Tests' in Test Explorer, and can also run them, but from inside this menu option, I always get 'No tests found to run.
' Here's my unittests.cpp
for reference:
#include "CppUnitTestLogger.h"
#include "CppUnitTest.h"
#include "CalculationObj.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace UnitTests
{
TEST_CLASS(CCalculationObjTest)
{
public:
BEGIN_TEST_METHOD_ATTRIBUTE(CCalculationObj_AdditionTest)
TEST_OWNER(L"OwnerName")
TEST_PRIORITY(1)
END_TEST_METHOD_ATTRIBUTE()
TEST_METHOD(CCalculationObj_AdditionTest)
{
int n1 = 100, n2 = 200;
int nOutPut = 0;
try
{
CCalculationObj calcObj;
calcObj.Addition(n1, n2, &nOutPut);
Assert::AreEqual(nOutPut, 300);
}
catch (const std::exception& e)
{
Logger::WriteMessage(e.what());
}
}
};
}
I'm using VS2015
and am interested in Native Unit Tests Framework
only. Thanks!
visual-studio visual-c++ microsoft-cpp-unit-test
Okay, this might sound little too simple, but how do you get particular test/test-sets to show up as unit-tests for a particular function, like when you invoke the same from right-clicking inside function body?
(Run Tests option)
I can get my tests to show up inside 'All Tests' in Test Explorer, and can also run them, but from inside this menu option, I always get 'No tests found to run.
' Here's my unittests.cpp
for reference:
#include "CppUnitTestLogger.h"
#include "CppUnitTest.h"
#include "CalculationObj.h"
using namespace Microsoft::VisualStudio::CppUnitTestFramework;
namespace UnitTests
{
TEST_CLASS(CCalculationObjTest)
{
public:
BEGIN_TEST_METHOD_ATTRIBUTE(CCalculationObj_AdditionTest)
TEST_OWNER(L"OwnerName")
TEST_PRIORITY(1)
END_TEST_METHOD_ATTRIBUTE()
TEST_METHOD(CCalculationObj_AdditionTest)
{
int n1 = 100, n2 = 200;
int nOutPut = 0;
try
{
CCalculationObj calcObj;
calcObj.Addition(n1, n2, &nOutPut);
Assert::AreEqual(nOutPut, 300);
}
catch (const std::exception& e)
{
Logger::WriteMessage(e.what());
}
}
};
}
I'm using VS2015
and am interested in Native Unit Tests Framework
only. Thanks!
visual-studio visual-c++ microsoft-cpp-unit-test
visual-studio visual-c++ microsoft-cpp-unit-test
edited Nov 21 '18 at 14:07
user2338150
asked Nov 21 '18 at 12:54
user2338150user2338150
113210
113210
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53412498%2fhow-to-associate-a-unit-test-with-respective-function-in-cppunittestframework%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53412498%2fhow-to-associate-a-unit-test-with-respective-function-in-cppunittestframework%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown