Design and implement a Least Recently Used (LRU) cache data structure. The cache should support the following operations:
Your implementation should meet the following requirements:
Define the interface (or class) that supports the operations above. You may design your solution in any programming language of your choice, but ensure that the interface is clear and that you follow the operational requirements stated.
Test your implementation with multiple operations and edge cases to ensure correctness.
Happy coding!