sapling/eden/fs/utils/test/BugTest.cpp
Adam Simpkins aa5e6c7295 update license headers in C++ files
Summary:
Update the copyright & license headers in C++ files to reflect the
relicensing to GPLv2

Reviewed By: wez

Differential Revision: D15487078

fbshipit-source-id: 19f24c933a64ecad0d3a692d0f8d2a38b4194b1d
2019-06-19 17:02:45 -07:00

33 lines
804 B
C++

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This software may be used and distributed according to the terms of the
* GNU General Public License version 2.
*/
#include "eden/fs/utils/Bug.h"
#include <folly/ExceptionWrapper.h>
#include <folly/test/TestUtils.h>
#include <gtest/gtest.h>
using namespace facebook::eden;
namespace {
void buggyFunction() {
EDEN_BUG() << "oh noes";
}
} // namespace
TEST(EdenBug, throws) {
EdenBugDisabler noCrash;
EXPECT_THROW_RE(buggyFunction(), std::runtime_error, "oh noes");
EXPECT_THROW_RE(EDEN_BUG() << "doh", std::runtime_error, "doh");
}
TEST(EdenBug, toException) {
EdenBugDisabler noCrash;
auto bug = EDEN_BUG() << "whoops";
auto ew = bug.toException();
EXPECT_THROW_RE(ew.throw_exception(), std::runtime_error, "whoops");
}