Files

17 lines
480 B
C#
Raw Permalink Normal View History

2024-01-04 16:27:14 +00:00
using Xunit.Sdk;
2023-12-15 16:05:58 +00:00
2023-12-31 11:23:38 +00:00
[assembly: TestFramework("Velopack.Packaging.Tests.TestsInit", "Velopack.Packaging.Tests")]
2023-12-15 16:05:58 +00:00
2024-02-02 12:26:31 +00:00
namespace Velopack.Packaging.Tests;
public class TestsInit : XunitTestFramework
2023-12-15 16:05:58 +00:00
{
2024-02-02 12:26:31 +00:00
public TestsInit(IMessageSink messageSink)
: base(messageSink)
2023-12-15 16:05:58 +00:00
{
2024-02-02 12:26:31 +00:00
HelperFile.AddSearchPath(PathHelper.GetRustBuildOutputDir());
HelperFile.AddSearchPath(PathHelper.GetVendorLibDir());
2024-03-29 12:19:34 +00:00
HelperFile.AddSearchPath(PathHelper.GetArtworkDir());
2023-12-15 16:05:58 +00:00
}
}