GSL/tests/assertion_tests.cpp

80 lines
2.4 KiB
C++
Raw Normal View History

2015-08-20 21:09:14 -04:00
///////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2015 Microsoft Corporation. All rights reserved.
//
// This code is licensed under the MIT License (MIT).
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
//
///////////////////////////////////////////////////////////////////////////////
#include <UnitTest++/UnitTest++.h>
#include <gsl.h>
using namespace gsl;
2015-08-20 21:09:14 -04:00
SUITE(assertion_tests)
{
int f(int i)
{
Expects(i > 0 && i < 10);
return i;
}
TEST(expects)
{
CHECK(f(2) == 2);
CHECK_THROW(f(10), fail_fast);
try { f(10); }
catch (fail_fast const& e) {
cstring_span<> prefix = ensure_z("GSL: Precondition failure");
cstring_span<> what = ensure_z(e.what()).first(prefix.length());
CHECK(prefix == what);
}
CHECK_THROW(f(10), std::logic_error);
try { f(10); }
catch (std::logic_error const& e) {
cstring_span<> prefix = ensure_z("GSL: Precondition failure");
cstring_span<> what = ensure_z(e.what()).first(prefix.length());
CHECK(prefix == what);
}
2015-08-20 21:09:14 -04:00
}
int g(int i)
{
i++;
Ensures(i > 0 && i < 10);
return i;
}
TEST(ensures)
{
CHECK(g(2) == 3);
CHECK_THROW(g(9), fail_fast);
try { g(9); }
catch (fail_fast const& e) {
cstring_span<> prefix = ensure_z("GSL: Postcondition failure");
cstring_span<> what = ensure_z(e.what()).first(prefix.length());
CHECK(prefix == what);
}
CHECK_THROW(g(9), std::runtime_error);
try { g(9); }
catch (std::runtime_error const& e) {
cstring_span<> prefix = ensure_z("GSL: Postcondition failure");
cstring_span<> what = ensure_z(e.what()).first(prefix.length());
CHECK(prefix == what);
}
}
2015-08-20 21:09:14 -04:00
}
int main(int, const char *[])
{
return UnitTest::RunAllTests();
}