19 lines
340 B
C++
19 lines
340 B
C++
#include "array/parray.hpp"
|
|
|
|
#include "tap.hpp"
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
int
|
|
main ()
|
|
{
|
|
cruft::TAP::logger tap;
|
|
|
|
int raw[3] = { -5, 9, 0 };
|
|
cruft::parray wrapped (raw);
|
|
|
|
tap.expect (equal (raw, wrapped), "comparison of array and parray");
|
|
|
|
return tap.status ();
|
|
}
|