1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
7 // http://www.apache.org/licenses/LICENSE-2.0
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
15 namespace Castle
.MonoRail
.Framework
.Internal
.Test
20 /// Helper class to store the context to be used
21 /// for the test cases (that use the ASP.Net Runtime)
23 public abstract class TestContextHolder
25 private static HttpContext _context
;
28 /// Initializes a new instance of the <see cref="TestContextHolder"/> class.
30 private TestContextHolder()
37 /// <param name="context">The context.</param>
38 public static void SetContext(HttpContext context
)
46 /// <value>The context.</value>
47 public static HttpContext Context
49 get { return _context; }