You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
171B

  1. #include <fansi/writer.hpp>
  2. #include <catch2/catch.hpp>
  3. TEST_CASE("Write a string") {
  4. fansi::text_writer wr;
  5. wr.write("foo");
  6. CHECK(wr.string() == "foo");
  7. }