// Copyright 2023 The PDFium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "core/fxcrt/fx_memcpy_wrappers.h" #include "testing/gtest/include/gtest/gtest.h" TEST(fxcrt, FXSYS_memset) { … } TEST(fxcrt, FXSYS_wmemset) { … } TEST(fxcrt, FXSYS_memcpy) { … } TEST(fxcrt, FXSYS_wmemcpy) { … } TEST(fxcrt, FXSYS_memmove) { … } TEST(fxcrt, FXSYS_wmemmove) { … } TEST(fxcrt, FXSYS_memcmp) { … } TEST(fxcrt, FXSYS_wmemcmp) { … } TEST(fxcrt, FXSYS_memchr) { … } TEST(fxcrt, FXSYS_wmemchr) { … }