Lines Matching refs:env
55 scoped_test_env env; in TEST_CASE() local
56 const path non_empty_dir = env.create_dir("dir"); in TEST_CASE()
57 env.create_file(non_empty_dir / "file1", 42); in TEST_CASE()
58 const path bad_perms_dir = env.create_dir("bad_dir"); in TEST_CASE()
59 const path file_in_bad_dir = env.create_file(bad_perms_dir / "file", 42); in TEST_CASE()
82 env.make_env_path("dne") in TEST_CASE()
95 scoped_test_env env; in TEST_CASE() local
96 const path dne = env.make_env_path("dne"); in TEST_CASE()
97 const path link = env.create_symlink(dne, "link"); in TEST_CASE()
98 const path nested_link = env.make_env_path("nested_link"); in TEST_CASE()
101 env.create_file("file", 42), in TEST_CASE()
102 env.create_dir("empty_dir"), in TEST_CASE()