Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. var redisMock = new Mock<IRedisService>();
  2.  
  3. public interface IRedisService
  4. {
  5. Task SetValueAsync(string key, string value);
  6. Task<string> GetValueAsync(string key);
  7. }
  8.  
  9. public class RedisTestImplementation : IRedisService
  10. {
  11. //here, List.Add, List[i] etc
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement