llvm/libc/test/UnitTest/MemoryMatcher.h

//===-- MemoryMatcher.h -----------------------------------------*- C++ -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#ifndef LLVM_LIBC_TEST_UNITTEST_MEMORYMATCHER_H
#define LLVM_LIBC_TEST_UNITTEST_MEMORYMATCHER_H

#include "src/__support/CPP/span.h"

#include "src/__support/macros/config.h"
#include "test/UnitTest/Test.h"

namespace LIBC_NAMESPACE_DECL {
namespace testing {

MemoryView;

} // namespace testing
} // namespace LIBC_NAMESPACE_DECL

#if !LIBC_TEST_HAS_MATCHERS()

#define EXPECT_MEM_EQ

#define ASSERT_MEM_EQ

#else // LIBC_TEST_HAS_MATCHERS()

namespace LIBC_NAMESPACE_DECL {
namespace testing {

class MemoryMatcher : public Matcher<MemoryView> {};

} // namespace testing
} // namespace LIBC_NAMESPACE_DECL

#define EXPECT_MEM_EQ(expected, actual)
#define ASSERT_MEM_EQ(expected, actual)

#endif // !LIBC_TEST_HAS_MATCHERS()

#endif // LLVM_LIBC_TEST_UNITTEST_MEMORYMATCHER_H