Skip to content

Commit ccd9edd

Browse files
committed
Fixing namespaces, part II
1 parent 1369972 commit ccd9edd

189 files changed

Lines changed: 890 additions & 975 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

SharpDiffLib.Test/ApplyPatch/AlgorithmGuessing.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
using System.Collections.Generic;
22
using System.Linq;
3+
using KST.SharpDiffLib.Definition;
4+
using KST.SharpDiffLib.DiffResult;
5+
using KST.SharpDiffLib.Test._Entities.SimpleClass;
36
using Microsoft.VisualStudio.TestTools.UnitTesting;
4-
using SharpDiffLib.definition;
5-
using SharpDiffLib.diffResult;
6-
using SharpDiffLib.Test._Entities.SimpleClass;
77

8-
namespace SharpDiffLib.Test.ApplyPatch
8+
namespace KST.SharpDiffLib.Test.ApplyPatch
99
{
1010
[TestClass]
1111
public class AlgorithmGuessing

SharpDiffLib.Test/ApplyPatch/ArrayOfObjects.cs

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using Microsoft.VisualStudio.TestTools.UnitTesting;
2-
using SharpDiffLib.algorithms.applyPatch;
3-
using SharpDiffLib.definition;
4-
using SharpDiffLib.definition.rules;
5-
using SharpDiffLib.diffResult;
6-
using SharpDiffLib.Test._Entities.SimpleWithId;
7-
8-
namespace SharpDiffLib.Test.ApplyPatch
1+
using KST.SharpDiffLib.Algorithms.ApplyPatch;
2+
using KST.SharpDiffLib.Definition;
3+
using KST.SharpDiffLib.Definition.Rules;
4+
using KST.SharpDiffLib.DiffResult;
5+
using KST.SharpDiffLib.Test._Entities.SimpleWithId;
6+
using Microsoft.VisualStudio.TestTools.UnitTesting;
7+
8+
namespace KST.SharpDiffLib.Test.ApplyPatch
99
{
1010
[TestClass]
1111
public class ArrayOfObjects

SharpDiffLib.Test/ApplyPatch/ArrayOfPrimitives.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
using Microsoft.VisualStudio.TestTools.UnitTesting;
2-
using SharpDiffLib.algorithms.applyPatch;
3-
using SharpDiffLib.definition;
4-
using SharpDiffLib.diffResult;
1+
using KST.SharpDiffLib.Algorithms.ApplyPatch;
2+
using KST.SharpDiffLib.Definition;
3+
using KST.SharpDiffLib.DiffResult;
4+
using Microsoft.VisualStudio.TestTools.UnitTesting;
55

6-
namespace SharpDiffLib.Test.ApplyPatch
6+
namespace KST.SharpDiffLib.Test.ApplyPatch
77
{
88
[TestClass]
99
public class ArrayOfPrimitives

SharpDiffLib.Test/ApplyPatch/BaseDefinition.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
using Microsoft.VisualStudio.TestTools.UnitTesting;
2-
using SharpDiffLib.Test._Entities.BaseWithId;
3-
using SharpDiffLib.algorithms.applyPatch;
4-
using SharpDiffLib.definition;
5-
using SharpDiffLib.definition.rules;
6-
using SharpDiffLib.diffResult;
1+
using KST.SharpDiffLib.Algorithms.ApplyPatch;
2+
using KST.SharpDiffLib.Definition;
3+
using KST.SharpDiffLib.Definition.Rules;
4+
using KST.SharpDiffLib.DiffResult;
5+
using KST.SharpDiffLib.Test._Entities.BaseWithId;
6+
using Microsoft.VisualStudio.TestTools.UnitTesting;
77

8-
namespace SharpDiffLib.Test.ApplyPatch
8+
namespace KST.SharpDiffLib.Test.ApplyPatch
99
{
1010
[TestClass]
1111
public class BaseDefinition

SharpDiffLib.Test/ApplyPatch/DictionaryOfObjects.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
using System.Collections.Generic;
2+
using KST.SharpDiffLib.Algorithms.ApplyPatch;
3+
using KST.SharpDiffLib.Definition;
4+
using KST.SharpDiffLib.Definition.Rules;
5+
using KST.SharpDiffLib.DiffResult;
6+
using KST.SharpDiffLib.Test._Entities.SimpleWithId;
27
using Microsoft.VisualStudio.TestTools.UnitTesting;
3-
using SharpDiffLib.Test._Entities.SimpleWithId;
4-
using SharpDiffLib.algorithms.applyPatch;
5-
using SharpDiffLib.definition;
6-
using SharpDiffLib.definition.rules;
7-
using SharpDiffLib.diffResult;
88

9-
namespace SharpDiffLib.Test.ApplyPatch
9+
namespace KST.SharpDiffLib.Test.ApplyPatch
1010
{
1111
[TestClass]
1212
public class DictionaryOfObjects

SharpDiffLib.Test/ApplyPatch/DictionaryOfPrimitives.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
using System.Collections.Generic;
2+
using KST.SharpDiffLib.Algorithms.ApplyPatch;
3+
using KST.SharpDiffLib.Definition;
4+
using KST.SharpDiffLib.DiffResult;
25
using Microsoft.VisualStudio.TestTools.UnitTesting;
3-
using SharpDiffLib.algorithms.applyPatch;
4-
using SharpDiffLib.definition;
5-
using SharpDiffLib.diffResult;
6-
using SharpDiffLib.diffResult.@base;
76

8-
namespace SharpDiffLib.Test.ApplyPatch
7+
namespace KST.SharpDiffLib.Test.ApplyPatch
98
{
109
[TestClass]
1110
public class DictionaryOfPrimitives

SharpDiffLib.Test/ApplyPatch/SetOfObjects.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
using System.Collections.Generic;
22
using System.Linq;
3+
using KST.SharpDiffLib.Algorithms.ApplyPatch;
4+
using KST.SharpDiffLib.Definition;
5+
using KST.SharpDiffLib.Definition.Rules;
6+
using KST.SharpDiffLib.DiffResult;
7+
using KST.SharpDiffLib.Test._Entities.SimpleWithId;
38
using Microsoft.VisualStudio.TestTools.UnitTesting;
4-
using SharpDiffLib.Test._Entities.SimpleWithId;
5-
using SharpDiffLib.algorithms.applyPatch;
6-
using SharpDiffLib.definition;
7-
using SharpDiffLib.definition.rules;
8-
using SharpDiffLib.diffResult;
99

10-
namespace SharpDiffLib.Test.ApplyPatch
10+
namespace KST.SharpDiffLib.Test.ApplyPatch
1111
{
1212
[TestClass]
1313
public class SetOfObjects

SharpDiffLib.Test/ApplyPatch/SetOfPrimitives.cs

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
using System.Collections.Generic;
22
using System.Linq;
3+
using KST.SharpDiffLib.Algorithms.ApplyPatch;
4+
using KST.SharpDiffLib.Definition;
5+
using KST.SharpDiffLib.DiffResult;
36
using Microsoft.VisualStudio.TestTools.UnitTesting;
4-
using SharpDiffLib.algorithms.applyPatch;
5-
using SharpDiffLib.definition;
6-
using SharpDiffLib.diffResult;
7-
using SharpDiffLib.diffResult.@base;
87

9-
namespace SharpDiffLib.Test.ApplyPatch
8+
namespace KST.SharpDiffLib.Test.ApplyPatch
109
{
1110
[TestClass]
1211
public class SetOfPrimitives

SharpDiffLib.Test/ApplyPatch/SimpleClass.cs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
using Microsoft.VisualStudio.TestTools.UnitTesting;
2-
using SharpDiffLib.Test._Entities.SimpleClass;
3-
using SharpDiffLib.algorithms.applyPatch;
4-
using SharpDiffLib.definition;
5-
using SharpDiffLib.diffResult;
1+
using KST.SharpDiffLib.Algorithms.ApplyPatch;
2+
using KST.SharpDiffLib.Definition;
3+
using KST.SharpDiffLib.DiffResult;
4+
using KST.SharpDiffLib.Test._Entities.SimpleClass;
5+
using Microsoft.VisualStudio.TestTools.UnitTesting;
66

7-
namespace SharpDiffLib.Test.ApplyPatch
7+
namespace KST.SharpDiffLib.Test.ApplyPatch
88
{
99
[TestClass]
1010
public class SimpleClass

SharpDiffLib.Test/ApplyPatch/SimpleValue.cs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
using System;
2-
using System.Text;
3-
using System.Collections.Generic;
4-
using System.Linq;
1+
using KST.SharpDiffLib.Algorithms.ApplyPatch;
2+
using KST.SharpDiffLib.Definition;
3+
using KST.SharpDiffLib.DiffResult;
54
using Microsoft.VisualStudio.TestTools.UnitTesting;
6-
using SharpDiffLib.algorithms.applyPatch;
7-
using SharpDiffLib.definition;
8-
using SharpDiffLib.diffResult;
95

10-
namespace SharpDiffLib.Test.ApplyPatch
6+
namespace KST.SharpDiffLib.Test.ApplyPatch
117
{
128
[TestClass]
139
public class SimpleValue

0 commit comments

Comments
 (0)