2024-09-05 16:57:28 +03:00
|
|
|
using DotRecast.Detour.TileCache.Io.Compress;
|
2023-08-19 09:31:51 +03:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|