From d7533e931cfb49a68dc8e6e3f524d49e364cef83 Mon Sep 17 00:00:00 2001 From: Manoj Srivastava Date: Wed, 27 May 2020 16:31:00 -0700 Subject: New upstream version 2.41-ah~0.git.20200131 --- .../test/compact-check-tests.cpp | 82 ++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 vendor/CppQuickCheck-2018-03-28/test/compact-check-tests.cpp (limited to 'vendor/CppQuickCheck-2018-03-28/test/compact-check-tests.cpp') diff --git a/vendor/CppQuickCheck-2018-03-28/test/compact-check-tests.cpp b/vendor/CppQuickCheck-2018-03-28/test/compact-check-tests.cpp new file mode 100644 index 00000000..910bc7b0 --- /dev/null +++ b/vendor/CppQuickCheck-2018-03-28/test/compact-check-tests.cpp @@ -0,0 +1,82 @@ +/* + * Copyright (c) 2016, Philipp Classen All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, + * this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE + * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE + * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR + * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + * POSSIBILITY OF SUCH DAMAGE. + */ + +#include "cppqc/Arbitrary.h" +#include "catch.hpp" +#include "cppqc/CompactCheck.h" + +using namespace cppqc; + +TEST_CASE("minimal passing example in compact check representation", + "[functional][compact]") +{ + const Result result = cppqc::gen() + .property("Dummy check (always passing)", + [](const bool &v) + { + return true; + }) + .testWithOutput(); + + REQUIRE(result.result == QC_SUCCESS); +} + +TEST_CASE("minimal failing example in compact check representation", + "[functional][compact]") +{ + const Result result = cppqc::gen() + .property("Dummy check (always failing)", + [](const bool &v) + { + return false; // Intended to fail + }) + .testWithOutput(); + + REQUIRE(result.result == QC_FAILURE); +} + +TEST_CASE("non-trivial example with std::sort should pass all tests", + "[functional][compact]") +{ + const Result result = cppqc::gen>() + .property("Should be sorted after calling std::sort", + [](const std::vector &v) + { + std::vector v_copy(v); + std::sort(std::begin(v_copy), std::end(v_copy)); + return std::is_sorted(std::begin(v_copy), std::end(v_copy)); + }) + .classify([](const std::vector &v) + { + return std::to_string(v.size()); + }) + .trivial([](const std::vector &v) + { + return v.empty() || v.size() == 1; + }) + .testWithOutput(); + + REQUIRE(result.result == QC_SUCCESS); +} -- cgit v1.2.3