DotRecastNetSim/test/DotRecast.Detour.TileCache..../TileCacheTestSetUpFixture.cs

16 lines
389 B
C#
Raw Normal View History

2024-09-05 16:57:28 +03:00
using DotRecast.Detour.TileCache.Io.Compress;
using DotRecast.Detour.TileCache.Test.Io;
using NUnit.Framework;
namespace DotRecast.Detour.TileCache.Test;
[SetUpFixture]
public class TileCacheTestSetUpFixture
{
[OneTimeSetUp]
public void OneTimeSetUp()
{
// add lz4
DtTileCacheCompressorFactory.Shared.TryAdd(1, DtTileCacheLZ4ForTestCompressor.Shared);
}
}