Fixing namespaces

This commit is contained in:
Chris Cameron
2017-10-02 20:53:11 -04:00
parent fa17bde2b6
commit ffaef958b5
3 changed files with 8 additions and 9 deletions

View File

@@ -1,9 +1,9 @@
using System;
using NUnit.Framework;
using ICD.Common.Properties;
using ICD.Common.Utils.Collections;
using NUnit.Framework;
namespace Icd.Common.Utils.Tests.Collections
namespace ICD.Common.Utils.Tests.Collections
{
[TestFixture]
public sealed class IcdHashSetTest

View File

@@ -1,8 +1,9 @@
using NUnit.Framework;
using System;
using System;
using System.Linq;
using ICD.Common.Utils.Extensions;
using NUnit.Framework;
namespace ICD.Common.Utils.Extensions
namespace ICD.Common.Utils.Tests.Extensions
{
[TestFixture]
public sealed class TypeExtensionsTest

View File

@@ -1,14 +1,12 @@
using System.Linq;
using ICD.Common.Properties;
using NUnit.Framework;
using ICD.Common.Utils;
using ICD.Common.Properties;
#if SIMPLSHARP
using Crestron.IO;
#else
using System.IO;
#endif
namespace RSD.SimplSharp.Common.Interfaces.Tests.Utils
namespace ICD.Common.Utils.Tests
{
[TestFixture]
public sealed class PathUtilsTest