[lit] Remove setting of the target-windows feature
[llvm-complete.git] / unittests / Support / MatchersTest.cpp
blob3248686fba936e93ee8b177ae37e8e4cd106be45
1 //===----- unittests/MatchersTest.cpp -------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "llvm/ADT/Optional.h"
10 #include "llvm/Testing/Support/SupportHelpers.h"
11 #include "gmock/gmock-matchers.h"
13 using ::testing::_;
14 using ::testing::AllOf;
15 using ::testing::Gt;
16 using ::testing::Lt;
17 using ::testing::Not;
19 namespace {
20 TEST(MatchersTest, Optional) {
21 EXPECT_THAT(llvm::Optional<int>(llvm::None), Not(llvm::ValueIs(_)));
22 EXPECT_THAT(llvm::Optional<int>(10), llvm::ValueIs(10));
23 EXPECT_THAT(llvm::Optional<int>(10), llvm::ValueIs(AllOf(Lt(11), Gt(9))));
25 } // namespace