Updated a comment and sort usings

This commit is contained in:
ianhong 2014-11-13 11:26:05 -08:00
parent 245d1dffda
commit dd1500dcfb
2 changed files with 2 additions and 8 deletions

View File

@ -15,7 +15,7 @@ namespace Microsoft.AspNet.Mvc.Razor
/// </summary>
/// <param name="page">The <see cref="IRazorPage"/> instance to execute.</param>
/// <param name="isPartial">Determines if the view is to be executed as a partial.</param>
/// <returns>A <see cref="IView"/> instance that renders the contents of the specified <paramref name="page"/></returns>
/// <returns>A <see cref="IView"/> instance that renders the contents of the <paramref name="page"/></returns>
IView GetView([NotNull] IRazorPage page, bool isPartial);
}
}

View File

@ -1,14 +1,8 @@
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.IO;
using System.Threading.Tasks;
using Xunit;
using Microsoft.AspNet.Mvc.ModelBinding;
using Microsoft.AspNet.Mvc.Rendering;
using Microsoft.AspNet.PipelineCore;
using Moq;
using Xunit;
namespace Microsoft.AspNet.Mvc.Razor.Test
{