cmoon::test::test_suite::test_suite





test_suite() noexcept;


(1)


test_suite(std::string name) noexcept;


(2)


test_suite(const test_suite&) = delete;


(3)


test_suite(test_suite&& other) noexcept;


(4)

1) Constructs an empty test suite with no name.

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

3) Copy constructor is deleted.

4) Move constructor.

Parameters

other - another test suite object to move