FCF 2.0 development in progress...
> > > >
[News] [C++ Libraries API] [C++ Downloads] [Donate to the project] [Contacts]

FCF_TEST_IMPORT macro

FCF_TEST_IMPORT

Package: fcfTest

File: test.hpp

Available from version: 1.0.1

This macro is declared when importing fcfTest functions from a shared library (if you built fcfTest in a separate library) to inform the compiler that the functions should be imported.

It's best to declare this macro in the settings for CMake, Visual Studio, and other build systems.

Example: Connecting an fcfTest from an external shared library.

#define FCF_TEST_IMPORT #include <fcfTest/test.hpp> FCF_TEST_DECLARE("OurPart", "OurGroup","OurTest"){ int a = 1; int b = 2; FCF_TEST(a !=b, a, b); } int main(int a_argc, char* a_argv[]){ bool error; fcf::NTest::cmdRun(a_argc, a_argv, fcf::NTest::CRM_RUN, &error); return error ? 1 : 0; }