Skip to content

Commit

Permalink
Getting tests into proper namespace so unit test grouping is happy.
Browse files Browse the repository at this point in the history
  • Loading branch information
belav committed Jul 12, 2021
1 parent a56467d commit bddd11b
Show file tree
Hide file tree
Showing 102 changed files with 102 additions and 204 deletions.
4 changes: 1 addition & 3 deletions Src/CSharpier.Tests/Samples/Samples.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
using System;
using System.Diagnostics;
using System.IO;
using System.Text;
using NUnit.Framework;

namespace CSharpier.Tests
namespace CSharpier.Tests.Samples
{
public class Samples
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.AddressOfExpression
{
public class AddressOfExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.AliasQualifiedName
{
public class AliasQualifiedNameTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.AnonymousMethodExpression
{
public class AnonymousMethodExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.AnonymousObjectCreationExpression
{
public class AnonymousObjectCreationExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ArgumentList
{
public class ArgumentListTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ArrayCreationExpression
{
public class ArrayCreationExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.AsExpression
{
public class AsExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.AssignmentExpression
{
public class AssignmentExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.AttributeList
{
public class AttributeListTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.AutoGeneratedFiles
{
public class AutoGeneratedFiles : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.AwaitExpression
{
public class AwaitExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.BaseExpression
{
public class BaseExpressionTests : BaseTest
{
Expand Down
2 changes: 1 addition & 1 deletion Src/CSharpier.Tests/TestFiles/BaseTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using FluentAssertions;
using NUnit.Framework;

namespace CSharpier.Tests.TestFileTests
namespace CSharpier.Tests.TestFiles
{
public class BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.BinaryExpression
{
public class BinaryExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.CastExpression
{
public class CastExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.CheckedStatement
{
public class CheckedStatementTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ClassDeclaration
{
public class ClassDeclarationTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.CoalesceExpression
{
public class CoalesceExpressionTests : BaseTest
{
Expand Down
3 changes: 1 addition & 2 deletions Src/CSharpier.Tests/TestFiles/Comments/_CommentsTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.Comments
{
public class CommentsTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ConditionalAccessExpression
{
public class ConditionalAccessExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ConditionalExpression
{
public class ConditionalExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ConstructorDeclaration
{
public class ConstructorDeclarationTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ContinueStatement
{
public class ContinueStatementTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ConversionOperatorDeclaration
{
public class ConversionOperatorDeclarationTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.DeclarationExpression
{
public class DeclarationExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.DefaultExpression
{
public class DefaultExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.DelegateDeclaration
{
public class DelegateDeclarationTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.DestructorDeclaration
{
public class DestructorDeclarationTests : BaseTest
{
Expand Down
3 changes: 1 addition & 2 deletions Src/CSharpier.Tests/TestFiles/Directives/_DirectivesTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.Directives
{
public class DirectivesTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.DoStatement
{
public class DoStatementTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ElementAccessExpression
{
public class ElementAccessExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ElementBindingExpression
{
public class ElementBindingExpressionTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ElseStatement
{
public class ElseStatementTests : BaseTest
{
Expand Down
3 changes: 1 addition & 2 deletions Src/CSharpier.Tests/TestFiles/EmptyLines/_EmptyLineTests.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.EmptyLines
{
public class EmptyLineTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.EnumDeclaration
{
public class EnumDeclarationTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.EventDeclaration
{
public class EventDeclarationTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.EventFieldDeclaration
{
public class EventFieldDeclarationTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ExternAliasDirective
{
public class ExternAliasDirectiveTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.FieldDeclaration
{
public class FieldDeclarationTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.FileEncoding
{
public class FileEncodingTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.FixedStatement
{
public class FixedStatementTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ForEachStatement
{
public class ForEachStatementTests : BaseTest
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
using CSharpier.Tests.TestFileTests;
using NUnit.Framework;

namespace CSharpier.Tests.TestFiles
namespace CSharpier.Tests.TestFiles.ForEachVariableStatement
{
public class ForEachVariableStatementTests : BaseTest
{
Expand Down
Loading

0 comments on commit bddd11b

Please sign in to comment.