Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions AMT.Extensions.Linq/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# AMT.Extensions.Linq

Extensions for .NET's Linq namespace

## Support for randomizing collections and enumerables

* LinqRandomizer.Random
27 changes: 0 additions & 27 deletions AMT.Extensions.System/Collections/Generic/ILabeledCollection.cs

This file was deleted.

143 changes: 0 additions & 143 deletions AMT.Extensions.System/Collections/Generic/LabeledCollection.cs

This file was deleted.

4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,21 @@ all: test


test: build
dotnet test ./Test.AMT.Extensions.Linq
dotnet test ./Test.AMT.Extensions.Logging
dotnet test ./Test.AMT.Extensions.System


cover: build
dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=\"opencover\" ./Test.AMT.Extensions.Linq
dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=\"opencover\" ./Test.AMT.Extensions.Logging
dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=\"opencover\" ./Test.AMT.Extensions.System


build:
dotnet build

report:
cover-report:
dotnet reportgenerator "-reports:**/coverage.net6.0.opencover.xml" "-targetdir:Coverage"


Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# netcore-extensions

* [AMT.Extensions.Linq](AMT.Extensions.Linq/README.md)
* [AMT.Extensions.Logging](AMT.Extensions.Logging/README.md)
* [AMT.Extensions.System](AMT.Extensions.System/README.md)
5 changes: 2 additions & 3 deletions Test.AMT.Extensions.Linq/IntListRandomizerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@
using FluentAssertions;
using System;
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using Xunit;


namespace Test.AMT.Extensions.Linq
{
// TODO: include when doing code coverage
// [ExcludeFromCodeCoverage]

[ExcludeFromCodeCoverage]
public class IntListRandomizerTests : IClassFixture<IntListTestFixture>
{
IntListTestFixture _testData;
Expand Down
Loading