• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2021 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef DISCOVERY_MDNS_TESTING_HASH_TEST_UTIL_NOP_H_
6 #define DISCOVERY_MDNS_TESTING_HASH_TEST_UTIL_NOP_H_
7 
8 #include "gtest/gtest.h"
9 
10 namespace openscreen {
11 namespace discovery {
12 
13 template <int&..., typename T>
VerifyTypeImplementsAbslHashCorrectly(std::initializer_list<T> values)14 testing::AssertionResult VerifyTypeImplementsAbslHashCorrectly(
15     std::initializer_list<T> values) {
16   return testing::AssertionSuccess();
17 }
18 
19 }  // namespace discovery
20 }  // namespace openscreen
21 
22 #endif  // DISCOVERY_MDNS_TESTING_HASH_TEST_UTIL_NOP_H_
23