Skip to content

Commit 5090eb8

Browse files
feature/code-overhaul (#74)
Added several new features, including LINQ/collection extensions for non-generic IEnumerable. Updated GetName extension method that supports full names and generic type arguments, and an updated ToRecordString implementation. Review of code analysis fixes and reductions in heap allocations. Updated HashAlgorithm extension and fixed a bug with the SHA3 implementation. This update also includes several bug-fixes and removes obsolete code, therefore the version has been updated to 9.0.0
1 parent 658325f commit 5090eb8

File tree

174 files changed

+4585
-3562
lines changed

Some content is hidden

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

174 files changed

+4585
-3562
lines changed

.github/workflows/dotnet.yml

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ on:
99
branches:
1010
- '**'
1111

12+
env:
13+
USE_FULL_NUMERIC_PROVIDER: "true"
14+
1215
jobs:
1316
build:
1417

OnixLabs.Core.UnitTests.Data/Record.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414

1515
namespace OnixLabs.Core.UnitTests.Data;
1616

17-
public sealed record Record<T>(string Text, int Number, T Value);
17+
public sealed record Record<T>(string Text, int Number, T Value, IEnumerable<T>? Values = null);

OnixLabs.Core.UnitTests/ArrayExtensionTests.cs

+15
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
// See the License for the specific language governing permissions and
1313
// limitations under the License.
1414

15+
using System.Text;
1516
using Xunit;
1617

1718
namespace OnixLabs.Core.UnitTests;
@@ -62,4 +63,18 @@ public void ConcatenateWithShouldProduceExpectedResult()
6263
// Then
6364
Assert.Equal(expected, actual);
6465
}
66+
67+
[Fact(DisplayName = "Array.ToString should produce the expected result")]
68+
public void ToStringShouldProduceExpectedResult()
69+
{
70+
// Given
71+
const string expected = "ABCxyz123";
72+
byte[] bytes = expected.ToByteArray();
73+
74+
// When
75+
string actual = bytes.ToString(Encoding.UTF8);
76+
77+
// Then
78+
Assert.Equal(expected, actual);
79+
}
6580
}

0 commit comments

Comments
 (0)