]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/outcome/test/tests/value-or-error.cpp
bump version to 15.2.11-pve1
[ceph.git] / ceph / src / boost / libs / outcome / test / tests / value-or-error.cpp
CommitLineData
92f5a8d4
TL
1/* Unit testing for outcomes
2(C) 2013-2019 Niall Douglas <http://www.nedproductions.biz/> (3 commits)
3
4
5Boost Software License - Version 1.0 - August 17th, 2003
6
7Permission is hereby granted, free of charge, to any person or organization
8obtaining a copy of the software and accompanying documentation covered by
9this license (the "Software") to use, reproduce, display, distribute,
10execute, and transmit the Software, and to prepare derivative works of the
11Software, and to permit third-parties to whom the Software is furnished to
12do so, all subject to the following:
13
14The copyright notices in the Software and this entire statement, including
15the above license grant, this restriction and the following disclaimer,
16must be included in all copies of the Software, in whole or in part, and
17all derivative works of the Software, unless such copies or derivative
18works are solely in the form of machine-executable object code generated by
19a source language processor.
20
21THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
24SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
25FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
26ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
27DEALINGS IN THE SOFTWARE.
28*/
29
30#include <boost/outcome/outcome.hpp>
31#include <boost/test/unit_test.hpp>
32#include <boost/test/unit_test_monitor.hpp>
33
34BOOST_OUTCOME_AUTO_TEST_CASE(works_outcome_valueorerror, "Tests that outcome constructs from ValueOrError and ValueOrNone concept inputs")
35{
36 using namespace BOOST_OUTCOME_V2_NAMESPACE;
37 {
38 struct value_or_error
39 {
40 using value_type = int;
41 using error_type = void;
42 bool has_value() const { return true; }
43 int value() const { return 78; }
44 void error() const {}
45 } a;
46 static_assert(convert::ValueOrNone<value_or_error>, "");
47 static_assert(convert::ValueOrError<value_or_error>, "");
48 BOOST_CHECK((convert::value_or_error<result<long>, value_or_error>{}(a).value() == 78));
49
50 result<long> b(a);
51 BOOST_CHECK(b.has_value());
52 BOOST_CHECK(b.value() == 78);
53 }
54}