Skip to content

Commit

Permalink
Update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
viceroypenguin committed Sep 23, 2020
1 parent f0bb7d5 commit b1dc561
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 4 deletions.
2 changes: 2 additions & 0 deletions MoreLinq.Test/AggregateTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ namespace MoreLinq.Test
using NUnit.Framework.Interfaces;
using static FuncModule;

using static MoreLinq.Extensions.AppendExtension;

[TestFixture]
public class AggregateTest
{
Expand Down
2 changes: 2 additions & 0 deletions MoreLinq.Test/AppendTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ namespace MoreLinq.Test
using System.Collections.Generic;
using NUnit.Framework;

using static MoreLinq.Extensions.AppendExtension;

[TestFixture]
public class AppendTest
{
Expand Down
4 changes: 2 additions & 2 deletions MoreLinq.Test/MoreLinq.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<AssemblyTitle>MoreLinq.Test</AssemblyTitle>
<TargetFrameworks>netcoreapp3.1;netcoreapp2.1;net451</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;netcoreapp3.0;netcoreapp3.1;net451;net471;net48</TargetFrameworks>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DebugType>portable</DebugType>
<AssemblyName>MoreLinq.Test</AssemblyName>
Expand Down Expand Up @@ -69,7 +69,7 @@
<Compile Include="WatchableEnumerator.cs" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
<ItemGroup Condition=" '$(TargetFramework)' == 'net451' or '$(TargetFramework)' == 'net471' or '$(TargetFramework)' == 'net48' ">
<Reference Include="System" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
Expand Down
2 changes: 2 additions & 0 deletions MoreLinq.Test/PartialSortTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ namespace MoreLinq.Test
using System;
using NUnit.Framework;

using static MoreLinq.Extensions.AppendExtension;

[TestFixture]
public class PartialSortTests
{
Expand Down
2 changes: 2 additions & 0 deletions MoreLinq.Test/PrependTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ namespace MoreLinq.Test
using NUnit.Framework;
using NUnit.Framework.Interfaces;

using static MoreLinq.Extensions.PrependExtension;

[TestFixture]
public class PrependTest
{
Expand Down
2 changes: 2 additions & 0 deletions MoreLinq.Test/SkipLastTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@ namespace MoreLinq.Test
{
using NUnit.Framework;

using static MoreLinq.Extensions.SkipLastExtension;

[TestFixture]
public class SkipLastTest
{
Expand Down
6 changes: 4 additions & 2 deletions MoreLinq.Test/TakeLastTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@

namespace MoreLinq.Test
{
using NUnit.Framework;
using System.Collections.Generic;
using System;
using System.Collections.Generic;
using NUnit.Framework;

using static MoreLinq.Extensions.TakeLastExtension;

[TestFixture]
public class TakeLastTest
Expand Down

0 comments on commit b1dc561

Please sign in to comment.