To avoid conflicts with glog logging macros, and because there is just no need to have this dependency. Pull Request: https://projects.blender.org/blender/blender/pulls/143719
19 lines
288 B
C++
19 lines
288 B
C++
/* SPDX-FileCopyrightText: 2011-2024 Blender Foundation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0 */
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "util/ies.h"
|
|
|
|
CCL_NAMESPACE_BEGIN
|
|
|
|
TEST(util_ies, invalid)
|
|
{
|
|
IESFile ies_file;
|
|
|
|
EXPECT_FALSE(ies_file.load("Hello, World!"));
|
|
}
|
|
|
|
CCL_NAMESPACE_END
|