Lines Matching refs:obj2
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()
236 cache.Get(obj2, Generator1); in ShouldClearCache()
238 cache.Get(obj2, Generator2); in ShouldClearCache()
282 private object obj2; field in Antmicro.Renode.Utilities.SimpleCacheTests