Searched refs:obj2 (Results 1 – 1 of 1) sorted by relevance
| /Renode-Infrastructure-v1.15.3-29f510e/src/Emulator/Main/Tests/UnitTests/ |
| D | SimpleCacheTests.cs | 19 obj2 = new object(); in Init() 39 var result = cache.Get(obj1, obj2, Generator3); in ShouldNotMissCacheWithTwoParameters() 42 var resultAfter = cache.Get(obj1, obj2, Generator3); in ShouldNotMissCacheWithTwoParameters() 55 cache.Get(obj2, Generator1); in ShouldNotMixParametersAndGenerators() 60 cache.Get(obj2, Generator2); in ShouldNotMixParametersAndGenerators() 70 cache.Get(obj1, obj2, Generator3); in ShouldNotMixParametersAndGenerators() 75 cache.Get(obj1, obj2, Generator4); in ShouldNotMixParametersAndGenerators() 215 …Assert.Throws<ArgumentNullException>(() => cache.Get(obj1, obj2, (Func<object, object, string>)nul… in ShouldNotHandleNullAsAGenerator() 221 var result = cache.Get(obj1, obj2, Generator3); in ShouldNotMixOrderOfParameteres() 224 var resultAfter = cache.Get(obj2, obj1, Generator3); in ShouldNotMixOrderOfParameteres() [all …]
|