blob: 59f0179b90075f3cb5755c40ed604eab23f7ed37 [file] [log] [blame]
using System.Net.Cache;
using Apache.Geode.DotNetCore;
using NUnit.Framework;
namespace GemfireDotNetTest
{
public class PoolManagerUnitTests
{
[SetUp]
public void Setup()
{
}
[Test]
public void TestPoolManagerCreatePoolFactory()
{
using (var cacheFactory = CacheFactory.Create()
.SetProperty("log-level", "none")
.SetProperty("log-file", "geode_native.log"))
{
using (var cache = cacheFactory.CreateCache())
{
using (var poolManager = cache.PoolManager)
{
using (var poolFactory = poolManager.CreatePoolFactory())
{
;
}
}
}
}
Assert.Pass();
}
}
}