Blender V4.3
blendfile_load_test.cc
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2019 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
5
6#include "BLI_path_utils.hh"
7
9
11{
12 /* Load the smallest blend file we have in the tests/data directory. */
13 if (!blendfile_load("modifier_stack" SEP_STR "array_test.blend")) {
14 return;
15 }
16 depsgraph_create(DAG_EVAL_RENDER);
17 EXPECT_NE(nullptr, this->depsgraph);
18}
@ DAG_EVAL_RENDER
TEST_F(BlendfileLoadingTest, CanaryTest)
const Depsgraph * depsgraph
#define SEP_STR
Definition unit.cc:39