File tree Expand file tree Collapse file tree 5 files changed +26
-0
lines changed
TestStack.FluentMVCTesting.Tests
TestStack.FluentMvcTesting Expand file tree Collapse file tree 5 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ using NUnit . Framework ;
2+
3+ namespace TestStack . FluentMVCTesting . Tests . Internal
4+ {
5+ [ TestFixture ]
6+ public class ExpressionInspectorTests
7+ {
8+
9+ }
10+ }
Original file line number Diff line number Diff line change 8989 <Compile Include =" ControllerResultTestTests\ShouldReturnEmptyResultTests.cs" />
9090 <Compile Include =" ControllerResultTestTests\ShouldReturnJsonTests.cs" />
9191 <Compile Include =" ControllerResultTestTests\ShouldReturnContentTests.cs" />
92+ <Compile Include =" Internal\ExpressionInspectorTests.cs" />
9293 <Compile Include =" RouteValueDictionaryExtensionsTests.cs" />
9394 <Compile Include =" TempDataResultTest.cs" />
9495 <Compile Include =" TestControllers\AsyncController.cs" />
Original file line number Diff line number Diff line change 1+ using System ;
2+ using System . Linq . Expressions ;
3+
4+ namespace TestStack . FluentMVCTesting . Internal
5+ {
6+ internal class ExpressionInspector
7+ {
8+ internal void Inspect ( LambdaExpression expression )
9+ {
10+ throw new NotImplementedException ( ) ;
11+ }
12+ }
13+ }
Original file line number Diff line number Diff line change 3434// [assembly: AssemblyVersion("1.0.*")]
3535[ assembly: AssemblyVersion ( "1.0.0.0" ) ]
3636[ assembly: AssemblyFileVersion ( "1.0.0.0" ) ]
37+ [ assembly: InternalsVisibleTo ( "TestStack.FluentMVCTesting.Tests" ) ]
Original file line number Diff line number Diff line change 8383 <Compile Include =" ControllerResultTest\ShouldReturnContent.cs" />
8484 <Compile Include =" ControllerResultTest\ShouldReturnEmptyResult.cs" />
8585 <Compile Include =" ControllerResultTest\ShouldReturnJson.cs" />
86+ <Compile Include =" Internal\ExpressionInspector.cs" />
8687 <Compile Include =" RouteValueDictionaryExtension.cs" />
8788 <Compile Include =" ControllerExtensions.cs" />
8889 <Compile Include =" ControllerResultTest\ControllerResultTest.cs" />
You can’t perform that action at this time.
0 commit comments