test_subclass.cc 531 B

1234567891011121314151617
  1. // Copyright 2022 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. #include "testing/rust_gtest_interop/test/test_subclass.h"
  5. namespace rust_gtest_interop {
  6. TestSubclass::TestSubclass() = default;
  7. RUST_GTEST_TEST_SUITE_FACTORY(TestSubclass);
  8. TestSubclassWithCustomTemplate::TestSubclassWithCustomTemplate() = default;
  9. RUST_CUSTOM_TEMPLATE_TEST_SUITE_FACTORY(TestSubclassWithCustomTemplate);
  10. } // namespace rust_gtest_interop