Lines Matching +full:two +full:- +full:dimensional

29 .Nm atf-c++ ,
63 .Nd C++ API to write ATF-based test programs
145 C++-based test programs follow this template:
146 .Bd -literal -offset indent
148 \&... C-specific includes go here ...
151 \&... C++-specific includes go here ...
153 #include <atf-c++.hpp>
199 .Xr atf-test-case 4 .
261 The test case's header can define the meta-data by using the
263 method, which takes two parameters: the first one specifies the
264 meta-data variable to be set and the second one specifies its value.
267 The test case has read-only access to the current configuration variables
283 meta-data variable available in the header only, one can also check for
319 .Bl -tag -width indent
328 .Sq -1 ,
333 Any failure (be it fatal or non-fatal) raised in this mode is recorded.
365 .Sq -1 ,
385 takes two expressions and raises a failure if the two do not evaluate to
423 In particular, these are useful to write tests for command-line interfaces.
430 .Bd -ragged -offset indent
442 .Bd -ragged -offset indent
454 .Bd -ragged -offset indent
467 .Bd -ragged -offset indent
478 .Bd -ragged -offset indent
488 .Bd -ragged -offset indent
500 .Bd -ragged -offset indent
505 This is a template that accepts any one-dimensional container of strings.
513 .Bd -ragged -offset indent
526 .Bd -ragged -offset indent
537 .Bd -ragged -offset indent
556 .Bd -ragged -offset indent
581 .Bl -tag -width ATFXBUILDXCXXFLAGSXX -compact
598 .Bd -literal -offset indent
599 #include <atf-c++.hpp>
624 ATF_REQUIRE_ERRNO(ENOENT, open("non-existent", O_RDONLY) == -1);
648 .Xr atf-test-program 1 ,
649 .Xr atf-test-case 4