Represents a mock implementation of IMockViewComponentContext for unit test purposes.
Inheritance: IMockViewComponentContext
		/// <summary>
		/// Builds the view component context.
		/// </summary>
		/// <param name="viewComponentName">Name of the view component.</param>
		/// <returns></returns>
		protected virtual IMockViewComponentContext BuildViewComponentContext(string viewComponentName)
		{
			MockViewComponentContext compContext = new MockViewComponentContext(viewComponentName, writer, viewEngine);

			compContext.SectionRender = SectionRender;
			compContext.OnBodyRender = OnBodyRender;
			compContext.OnViewRender = OnViewRender;

			return compContext;
		}