Explain why assert-test is a separate test

This commit is contained in:
Victor Zverovich 2020-10-11 08:24:17 -07:00
parent 1d112bdd1e
commit 48ea8193df

View File

@ -1,4 +1,8 @@
// Formatting library for C++ - assertion tests
// Formatting library for C++ - FMT_ASSERT test
//
// It is a separate test to minimize the number of EXPECT_DEBUG_DEATH checks
// which are slow on some platforms. In other tests FMT_ASSERT is made to throw
// an exception which is much faster and easier to check.
//
// Copyright (c) 2012 - present, Victor Zverovich
// All rights reserved.