blob: 2ca07a74f94d4010bfca4835cf44eea5fecdbbf4 [file] [log] [blame]
using System;
using Xunit;
using Apache.Geode.NetCore;
using Apache.Geode.Session;
using System.IO;
namespace Apache.Geode.Session.Tests
{
[Trait("Category", "Integration")]
public class SessionStateStoreTests : IDisposable
{
private Cache Cache { get; set; }
private string CacheXmlFilePath { get; set; }
private string GeodePropertiesFilePath { get; set; }
private const string CacheXmlFileNameKey = "cache-xml-file";
public SessionStateStoreTests()
{
//SessionStateCache.IsInitialized = false;
}
public void Dispose()
{
try
{
Cache.Close();
}
catch (Exception)
{
}
}
}
}