mirror of
https://github.com/boostorg/test.git
synced 2026-02-19 02:42:13 +00:00
9 lines
159 B
C++
9 lines
159 B
C++
#include <my_class.hpp>
|
|
|
|
int main( int, char* [] )
|
|
{
|
|
my_class test_object( "qwerty" );
|
|
|
|
return test_object.is_valid() ? EXIT_SUCCESS : EXIT_FAILURE;
|
|
}
|