Skip to content

Commit e4d34a4

Browse files
committed
Foundation of the ExpressionVisitor.
1 parent 22d1b31 commit e4d34a4

File tree

5 files changed

+26
-0
lines changed

5 files changed

+26
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using NUnit.Framework;
2+
3+
namespace TestStack.FluentMVCTesting.Tests.Internal
4+
{
5+
[TestFixture]
6+
public class ExpressionInspectorTests
7+
{
8+
9+
}
10+
}

TestStack.FluentMVCTesting.Tests/TestStack.FluentMVCTesting.Tests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@
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" />
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
}

TestStack.FluentMvcTesting/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@
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")]

TestStack.FluentMvcTesting/TestStack.FluentMVCTesting.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@
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" />

0 commit comments

Comments
 (0)