Blender
V3.3
|
#include "testing/testing.h"
#include "CLG_log.h"
#include "BKE_bpath.h"
#include "BKE_idtype.h"
#include "BKE_lib_id.h"
#include "BKE_main.h"
#include "MEM_guardedalloc.h"
#include "DNA_listBase.h"
#include "DNA_movieclip_types.h"
#include "DNA_text_types.h"
#include "BLI_listbase.h"
#include "BLI_path_util.h"
#include "BLI_string.h"
Go to the source code of this file.
Classes | |
class | blender::bke::tests::BPathTest |
Namespaces | |
blender | |
blender::bke | |
blender::bke::tests | |
Macros | |
#define | ABSOLUTE_ROOT SEP_STR |
#define | RELATIVE_ROOT "//" |
#define | BASE_DIR ABSOLUTE_ROOT "blendfiles" SEP_STR |
#define | REBASE_DIR BASE_DIR "rebase" SEP_STR |
#define | BLENDFILE_NAME "bpath.blend" |
#define | BLENDFILE_PATH BASE_DIR BLENDFILE_NAME |
#define | TEXT_PATH_ITEM "texts" SEP_STR "text.txt" |
#define | TEXT_PATH_ABSOLUTE ABSOLUTE_ROOT TEXT_PATH_ITEM |
#define | TEXT_PATH_ABSOLUTE_MADE_RELATIVE RELATIVE_ROOT ".." SEP_STR TEXT_PATH_ITEM |
#define | TEXT_PATH_RELATIVE RELATIVE_ROOT TEXT_PATH_ITEM |
#define | TEXT_PATH_RELATIVE_MADE_ABSOLUTE BASE_DIR TEXT_PATH_ITEM |
#define | MOVIECLIP_PATH_ITEM "movieclips" SEP_STR "movieclip.avi" |
#define | MOVIECLIP_PATH_ABSOLUTE ABSOLUTE_ROOT MOVIECLIP_PATH_ITEM |
#define | MOVIECLIP_PATH_ABSOLUTE_MADE_RELATIVE RELATIVE_ROOT ".." SEP_STR MOVIECLIP_PATH_ITEM |
#define | MOVIECLIP_PATH_RELATIVE RELATIVE_ROOT MOVIECLIP_PATH_ITEM |
#define | MOVIECLIP_PATH_RELATIVE_MADE_ABSOLUTE BASE_DIR MOVIECLIP_PATH_ITEM |
Functions | |
blender::bke::tests::TEST_F (BPathTest, rebase_on_relative) | |
blender::bke::tests::TEST_F (BPathTest, rebase_on_absolute) | |
blender::bke::tests::TEST_F (BPathTest, convert_to_relative) | |
blender::bke::tests::TEST_F (BPathTest, convert_to_absolute) | |
blender::bke::tests::TEST_F (BPathTest, list_backup_restore) | |
Definition at line 27 of file bpath_test.cc.
#define BASE_DIR ABSOLUTE_ROOT "blendfiles" SEP_STR |
Definition at line 31 of file bpath_test.cc.
#define BLENDFILE_NAME "bpath.blend" |
Definition at line 34 of file bpath_test.cc.
#define BLENDFILE_PATH BASE_DIR BLENDFILE_NAME |
Definition at line 35 of file bpath_test.cc.
#define MOVIECLIP_PATH_ABSOLUTE ABSOLUTE_ROOT MOVIECLIP_PATH_ITEM |
Definition at line 44 of file bpath_test.cc.
#define MOVIECLIP_PATH_ABSOLUTE_MADE_RELATIVE RELATIVE_ROOT ".." SEP_STR MOVIECLIP_PATH_ITEM |
Definition at line 45 of file bpath_test.cc.
#define MOVIECLIP_PATH_ITEM "movieclips" SEP_STR "movieclip.avi" |
Definition at line 43 of file bpath_test.cc.
#define MOVIECLIP_PATH_RELATIVE RELATIVE_ROOT MOVIECLIP_PATH_ITEM |
Definition at line 46 of file bpath_test.cc.
#define MOVIECLIP_PATH_RELATIVE_MADE_ABSOLUTE BASE_DIR MOVIECLIP_PATH_ITEM |
Definition at line 47 of file bpath_test.cc.
Definition at line 32 of file bpath_test.cc.
#define RELATIVE_ROOT "//" |
Definition at line 30 of file bpath_test.cc.
#define TEXT_PATH_ABSOLUTE ABSOLUTE_ROOT TEXT_PATH_ITEM |
Definition at line 38 of file bpath_test.cc.
#define TEXT_PATH_ABSOLUTE_MADE_RELATIVE RELATIVE_ROOT ".." SEP_STR TEXT_PATH_ITEM |
Definition at line 39 of file bpath_test.cc.
#define TEXT_PATH_ITEM "texts" SEP_STR "text.txt" |
Definition at line 37 of file bpath_test.cc.
#define TEXT_PATH_RELATIVE RELATIVE_ROOT TEXT_PATH_ITEM |
Definition at line 40 of file bpath_test.cc.
#define TEXT_PATH_RELATIVE_MADE_ABSOLUTE BASE_DIR TEXT_PATH_ITEM |
Definition at line 41 of file bpath_test.cc.