Definition at line 22 of file MemoryCacheTests.cs.
void Deveel.Data.Caching.MemoryCacheTests.CreateWithoutErrors |
( |
| ) |
|
|
inline |
Definition at line 24 of file MemoryCacheTests.cs.
25 MemoryCache cache = null;
26 Assert.DoesNotThrow(() => cache =
new MemoryCache());
27 Assert.IsNotNull(cache);
void Deveel.Data.Caching.MemoryCacheTests.SetAndGetValue |
( |
| ) |
|
|
inline |
Definition at line 40 of file MemoryCacheTests.cs.
41 var cache =
new MemoryCache();
42 Assert.IsTrue(cache.Set(32,
"test"));
45 Assert.DoesNotThrow(() => {
46 bool found = cache.TryGet(32, out value);
50 Assert.IsNotNull(value);
51 Assert.AreEqual(
"test", value);
void Deveel.Data.Caching.MemoryCacheTests.SetValue |
( |
| ) |
|
|
inline |
Definition at line 31 of file MemoryCacheTests.cs.
32 var cache =
new MemoryCache();
35 Assert.DoesNotThrow(() => result = cache.Set(32,
"test"));
36 Assert.IsTrue(result);
The documentation for this class was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb-nunit/Deveel.Data.Caching/MemoryCacheTests.cs