cmoon::test::test_suite::test_suite





test_suite() noexcept(noexcept(Allocator()));


(1)


test_suite(std::string name) noexcept(noexcept(Allocator()));


(2)


test_suite(const Allocator& alloc);


(3)


test_suite(std::string name, const Allocator& alloc);


(4)


test_suite(const test_suite&) = delete;


(5)


test_suite(test_suite&& other) noexcept;


(6)

1) Constructs an empty test suite with no name.

2) Constructs an empty test suite with the given name.

3) Constructs an empty test suite with no name with the given allocator.

4) Constructs an empty test suite with the given name and given allocator.

5) Copy constructor is deleted.

6) Move constructor.

Parameters

other - another test suite object to move