Files
test2/intern/cycles/test/util_ies_test.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
288 B
C++
Raw Normal View History

/* 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