Files
lix/tests/unit/libutil-support/tests/test-data.hh
T
Jade Lovelace c0de512e14 fix: make test/ headers compliant with styleguide
These were not included in that check. Beats me as to why.

Change-Id: Ib44c7f0b10672359026f95daeb088039cf6df4eb
2025-04-09 23:46:41 -07:00

22 lines
437 B
C++

#pragma once
/// @file
#include "lix/libutil/types.hh"
#include "lix/libutil/environment-variables.hh"
#include "lix/libutil/file-system.hh"
namespace nix {
/**
* The path to the unit test data directory. See the contributing guide
* in the manual for further details.
*/
Path getUnitTestData();
/**
* Resolve a path under the unit test data directory to an absolute path.
*/
Path getUnitTestDataPath(std::string_view path);
}