Skip to content

Commit

Permalink
adjust namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKostousov committed Jan 3, 2018
1 parent 591a67f commit 211a595
Show file tree
Hide file tree
Showing 26 changed files with 35 additions and 82 deletions.
2 changes: 1 addition & 1 deletion AsmToBytes/EntryPoint.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using System.Linq;
using System.Text;

namespace GrEmit.AsmToBytes
namespace AsmToBytes
{
public static class EntryPoint
{
Expand Down
2 changes: 1 addition & 1 deletion GrEmit.Tests/HackHelpersTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

using NUnit.Framework;

namespace Tests
namespace GrEmit.Tests
{
[TestFixture]
public class HackHelpersTest
Expand Down
7 changes: 3 additions & 4 deletions GrEmit.Tests/OpCodesTests/TestCalls.cs
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Reflection.Emit;
using GrEmit;

using GrEmit.Utils;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class TestCalls
Expand Down
7 changes: 2 additions & 5 deletions GrEmit.Tests/OpCodesTests/Test_Add.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
using System;
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

using System.Linq;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Add
Expand Down
7 changes: 2 additions & 5 deletions GrEmit.Tests/OpCodesTests/Test_Add_Ovf.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
using System;
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

using System.Linq;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Add_Ovf
Expand Down
7 changes: 2 additions & 5 deletions GrEmit.Tests/OpCodesTests/Test_Add_Ovf_Un.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,10 @@
using System;
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

using System.Linq;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Add_Ovf_Un
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_And.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_And
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Div.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Div
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Div_Un.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Div_Un
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Mul.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Mul
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Mul_Ovf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Mul_Ovf
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Mul_Ovf_Un.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Mul_Ovf_Un
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Neg.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Neg
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Not.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Not
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Or.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Or
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Rem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Rem
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Rem_Un.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Rem_Un
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Sub.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Sub
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Sub_Ovf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Sub_Ovf
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Sub_Ovf_Un.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Sub_Ovf_Un
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/OpCodesTests/Test_Xor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
using System.Linq;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests.OpCodesTests
namespace GrEmit.Tests.OpCodesTests
{
[TestFixture]
public class Test_Xor
Expand Down
2 changes: 1 addition & 1 deletion GrEmit.Tests/ReflectionExtensionsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

using NUnit.Framework;

namespace Tests
namespace GrEmit.Tests
{
[TestFixture]
public class ReflectionExtensionsTest
Expand Down
7 changes: 3 additions & 4 deletions GrEmit.Tests/Test.cs
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
using System;
using System.Collections.Generic;
#if NET45
using System.Diagnostics;
using System.Linq;
#endif
using System.Reflection;
using System.Reflection.Emit;

using GrEmit;
using GrEmit.Utils;

using NUnit.Framework;
#if NET45
#endif

namespace Tests
namespace GrEmit.Tests
{
[TestFixture]
public class Test
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/TestArgumentOutOfRange.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
using System;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests
namespace GrEmit.Tests
{
[TestFixture]
public class TestArgumentOutOfRange
Expand Down
4 changes: 1 addition & 3 deletions GrEmit.Tests/TestLabels.cs
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
using System;
using System.Reflection.Emit;

using GrEmit;

using NUnit.Framework;

namespace Tests
namespace GrEmit.Tests
{
[TestFixture]
public class TestLabels
Expand Down
8 changes: 3 additions & 5 deletions GrEmit.Tests/TestTryCatch.cs
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
using System;
using System.Reflection;
using System.Reflection.Emit;
#if NET45
using System.Threading;
#endif

using GrEmit;

using NUnit.Framework;
#if NET45
#endif

namespace Tests
namespace GrEmit.Tests
{
[TestFixture]
public class TestTryCatch
Expand Down

0 comments on commit 211a595

Please sign in to comment.