Fix the build.
[castle.git] / MonoRail / Castle.MonoRail.Framework / Internal / Test / TestContextHolder.cs
blobeb05c03fdcfbb7c974229dd69430212661e6bd4c
1 // Copyright 2004-2007 Castle Project - http://www.castleproject.org/
2 //
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
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
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
17 using System.Web;
19 /// <summary>
20 /// Helper class to store the context to be used
21 /// for the test cases (that use the ASP.Net Runtime)
22 /// </summary>
23 public abstract class TestContextHolder
25 private static HttpContext _context;
27 /// <summary>
28 /// Initializes a new instance of the <see cref="TestContextHolder"/> class.
29 /// </summary>
30 private TestContextHolder()
34 /// <summary>
35 /// Sets the context.
36 /// </summary>
37 /// <param name="context">The context.</param>
38 public static void SetContext(HttpContext context)
40 _context = context;
43 /// <summary>
44 /// Gets the context.
45 /// </summary>
46 /// <value>The context.</value>
47 public static HttpContext Context
49 get { return _context; }