blob: 14767a5d2d5f04c5b88c824367fab0e7e65941b9 [file] [log] [blame]
using System.Net.Cache;
using Apache.Geode.NetCore;
using Xunit;
namespace GemfireDotNetTest
{
[Collection("Geode .net Core Collection")]
public class PoolManagerUnitTests
{
[Fact]
public void TestPoolManagerCreatePoolFactory()
{
using var cacheFactory = CacheFactory.Create();
using var cache = cacheFactory.CreateCache();
using var poolManager = cache.PoolManager;
using var poolFactory = poolManager.CreatePoolFactory();
}
}
}