public void WhenCalled_SetsNoStore()
                {
                    var attribute = new NeverResponseCacheAttribute();

                    Assert.True(attribute.NoStore);
                }
                public void WhenCalled_SetsLocation()
                {
                    var attribute = new NeverResponseCacheAttribute();

                    Assert.Equal(ResponseCacheLocation.None, attribute.Location);
                }