Skip to content

Commit

Permalink
Removed unused packages from Core.Tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Audrunas committed Mar 3, 2015
1 parent 7d38943 commit 94ed857
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@
<Compile Include="DataAccess\DataContext\EventListeners\SaveOrUpdateEventListenerTests.cs" />
<Compile Include="DataAccess\DataContext\Fetching\DefaultFetchingProviderIntegrationTests.cs" />
<Compile Include="DataAccess\DataContext\Interceptors\StaleInterceptorIntegrationTests.cs" />
<Compile Include="DataAccess\DataContext\Migrations\DefaultMigrationTests.cs" />
<Compile Include="DataAccess\DataContext\QueryableExtensionsIntegrationTests.cs" />
<Compile Include="DataAccess\DataContext\QueryOverExtensionsIntegrationTests.cs" />
<Compile Include="DataAccess\DataContext\RestrictionsExtensionsIntegrationTests.cs" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using BetterModules.Core.Exceptions;
using NUnit.Framework;

namespace BetterModules.Core.Tests.DataAccess.DataContext.Migrations
namespace BetterModules.Core.Database.Tests.DataAccess.DataContext.Migrations
{
[TestFixture]
public class DefaultMigrationTests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,12 @@ private static void CheckIfTablesExist(SqlConnection connection)
}
}

Assert.GreaterOrEqual(tables.Count, 4);
Assert.GreaterOrEqual(tables.Count, 5);
Assert.IsTrue(tables.Contains("VersionInfo"));
Assert.IsTrue(tables.Contains("TestItems"));
Assert.IsTrue(tables.Contains("TestItemCategories"));
Assert.IsTrue(tables.Contains("TestItemChildren"));
Assert.IsTrue(tables.Contains("InheritedTestItems"));
}
}
}
9 changes: 0 additions & 9 deletions BetterModules.Core.Tests/BetterModules.Core.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,14 +54,6 @@
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Autofac.3.1.5\lib\net40\Autofac.dll</HintPath>
</Reference>
<Reference Include="FluentMigrator, Version=1.0.6.0, Culture=neutral, PublicKeyToken=aacfc7de5acabf05, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\FluentMigrator.1.0.6.0\lib\40\FluentMigrator.dll</HintPath>
</Reference>
<Reference Include="FluentNHibernate, Version=1.3.0.733, Culture=neutral, PublicKeyToken=8aa435e3cb308880, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\FluentNHibernate.1.3.0.733\lib\FluentNHibernate.dll</HintPath>
</Reference>
<Reference Include="Iesi.Collections, Version=1.0.1.0, Culture=neutral, PublicKeyToken=aa95f207798dfdb4, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Iesi.Collections.3.2.0.4000\lib\Net35\Iesi.Collections.dll</HintPath>
Expand Down Expand Up @@ -90,7 +82,6 @@
<Compile Include="Configuration\DefaultConfigurationLoaderTests.cs" />
<Compile Include="DataAccess\DataContext\EventListeners\EventListenerHelperTests.cs" />
<Compile Include="DataAccess\DataContext\Fetching\EagerFetchTests.cs" />
<Compile Include="DataAccess\DataContext\Migrations\DefaultMigrationTests.cs" />
<Compile Include="DataAccess\DataContext\QueryableExtensionsTests.cs" />
<Compile Include="DataAccess\PredicateBuilderTests.cs" />
<Compile Include="Dependencies\ContextScopeProviderTests.cs" />
Expand Down
3 changes: 0 additions & 3 deletions BetterModules.Core.Tests/packages.config
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Autofac" version="3.1.5" targetFramework="net45" />
<package id="FluentMigrator" version="1.0.6.0" targetFramework="net45" />
<package id="FluentMigrator.Tools" version="1.0.6.0" targetFramework="net45" />
<package id="FluentNHibernate" version="1.3.0.733" targetFramework="net45" />
<package id="Iesi.Collections" version="3.2.0.4000" targetFramework="net45" />
<package id="Moq" version="4.0.10827" targetFramework="net45" />
<package id="NHibernate" version="3.3.3.4001" targetFramework="net45" />
Expand Down
1 change: 0 additions & 1 deletion packages/repositories.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<repositories>
<repository path="..\BetterModules.Core.Database.Integration.Tests\packages.config" />
<repository path="..\BetterModules.Core.Database.Tests\packages.config" />
<repository path="..\BetterModules.Core.Tests\packages.config" />
<repository path="..\BetterModules.Core.Web.Tests\packages.config" />
Expand Down

0 comments on commit 94ed857

Please sign in to comment.