mirror of
https://git.mirrors.martin98.com/https://github.com/google/draco
synced 2025-06-22 12:15:39 +08:00
40 lines
1.4 KiB
C++
40 lines
1.4 KiB
C++
// Copyright 2016 The Draco Authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
#ifndef DRACO_CORE_DRACO_TEST_UTILS_H_
|
|
#define DRACO_CORE_DRACO_TEST_UTILS_H_
|
|
|
|
#include "core/draco_test_base.h"
|
|
|
|
namespace draco {
|
|
|
|
|
|
// Returns the full path to a given test file.
|
|
std::string GetTestFileFullPath(const std::string &file_name);
|
|
|
|
// Generates a new golden file and saves it into the correct folder.
|
|
// Returns false if the file couldn't be created.
|
|
bool GenerateGoldenFile(const std::string &golden_file_name, const void *data,
|
|
int data_size);
|
|
|
|
// Compare a golden file content with the input data.
|
|
// Function will log the first byte position where the data differ.
|
|
// Returns false if there are any differences.
|
|
bool CompareGoldenFile(const std::string &golden_file_name, const void *data,
|
|
int data_size);
|
|
|
|
} // namespace draco
|
|
|
|
#endif // DRACO_CORE_DRACO_TEST_UTILS_H_
|