示例#1
0
                public void WhenCalled_SetsLocation()
                {
                    var attribute = new DefaultResponseCacheAttribute();

                    Assert.Equal(ResponseCacheLocation.Any, attribute.Location);
                }
示例#2
0
                public void WhenCalled_SetsDuration()
                {
                    var attribute = new DefaultResponseCacheAttribute();

                    Assert.Equal(60 * 5, attribute.Duration);
                }