Skip to content

Commit 7408630

Browse files
committed
Merge pull request #20 from JakeGinnivan/SymmetricConventions
Symmetric Convention
2 parents cbfc0e7 + f97ca91 commit 7408630

File tree

31 files changed

+210
-21
lines changed

31 files changed

+210
-21
lines changed

TestAssembly/Dtos/AnotherClass.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace TestAssembly.Dtos
2+
{
3+
public class AnotherClass
4+
{
5+
6+
}
7+
}

TestAssembly/Dtos/BlahDto.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace TestAssembly.Dtos
2+
{
3+
public class BlahDto
4+
{
5+
6+
}
7+
}

TestAssembly/SomeDto.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace TestAssembly
2+
{
3+
public class SomeDto
4+
{
5+
6+
}
7+
}

TestAssembly/TestAssembly.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@
4444
<Compile Include="ClassWithPrivateDefaultCtor.cs" />
4545
<Compile Include="ClassWithProtectedDefaultCtor.cs" />
4646
<Compile Include="ClassWithPublicDefaultCtor.cs" />
47+
<Compile Include="Dtos\AnotherClass.cs" />
48+
<Compile Include="Dtos\BlahDto.cs" />
4749
<Compile Include="Properties\AssemblyInfo.cs" />
50+
<Compile Include="SomeDto.cs" />
4851
</ItemGroup>
4952
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
5053
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
Header
2+
------
23

34
Approved Exception
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
Some invalid assembly references found in TestStack.ConventionTests.Tests
2+
-------------------------------------------------------------------------
23

34
bin\Debug\ApprovalTests.dll
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
Some invalid assembly references found in TestStack.ConventionTests.Tests
2+
-------------------------------------------------------------------------
23

34
bin\Debug\ApprovalTests.dll

TestStack.ConventionTests.Tests/ProjectBasedConventions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
using ApprovalTests.Reporters;
66
using NSubstitute;
77
using NUnit.Framework;
8+
using TestStack.ConventionTests.ConventionData;
89
using TestStack.ConventionTests.Conventions;
910
using TestStack.ConventionTests.Internal;
1011
using TestStack.ConventionTests.Tests.Properties;
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
The following files which should be embedded resources:
2+
-------------------------------------------------------
23

34
Scripts\Script2.sql
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
The following files which should be embedded resources:
2+
-------------------------------------------------------
23

34
Scripts\Script2.sql

0 commit comments

Comments
 (0)