Skip to content

Commit 4228813

Browse files
feature/numerics (#34)
Implemented OnixLabs.Numerics package, including BigDecimal, NumberInfo, and generic math extensions.
1 parent f70357e commit 4228813

File tree

170 files changed

+12840
-3866
lines changed

Some content is hidden

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

170 files changed

+12840
-3866
lines changed

.editorconfig

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
root = true
22

33
[*]
4-
max_line_length = 140
5-
insert_final_newline = true
4+
charset = utf-8
5+
trim_trailing_whitespace = true
6+
insert_final_newline = true
7+
indent_style = space
8+
indent_size = 4
9+
continuation_indent_size = 4
10+
max_line_length = 140
11+
12+
# ReSharper properties
13+
resharper_csharp_wrap_lines = false

.idea/.idea.onixlabs-dotnet/.idea/vcs.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

OnixLabs.Core.UnitTests.Data/OnixLabs.Core.UnitTests.Data.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2" />
15-
<PackageReference Include="xunit" Version="2.4.2" />
16-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
14+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
15+
<PackageReference Include="xunit" Version="2.6.4" />
16+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1818
<PrivateAssets>all</PrivateAssets>
1919
</PackageReference>
20-
<PackageReference Include="coverlet.collector" Version="3.1.2">
20+
<PackageReference Include="coverlet.collector" Version="6.0.0">
2121
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2222
<PrivateAssets>all</PrivateAssets>
2323
</PackageReference>

OnixLabs.Core.UnitTests/Linq/IEnumerableExtensionTests.cs

+60-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Copyright © 2020 ONIXLabs
2-
//
2+
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
55
// You may obtain a copy of the License at
6-
//
6+
//
77
// http://www.apache.org/licenses/LICENSE-2.0
8-
//
8+
//
99
// Unless required by applicable law or agreed to in writing, software
1010
// distributed under the License is distributed on an "AS IS" BASIS,
1111
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -14,8 +14,8 @@
1414

1515
using System;
1616
using System.Collections.Generic;
17+
using System.Globalization;
1718
using System.Linq;
18-
using OnixLabs.Core.Collections;
1919
using OnixLabs.Core.Linq;
2020
using OnixLabs.Core.UnitTests.Data.Objects;
2121
using Xunit;
@@ -444,4 +444,60 @@ public void WhereNotNullShouldProduceExpectedResult()
444444
// Then
445445
Assert.Equal(expected, actual);
446446
}
447+
448+
[Fact(DisplayName = "IEnumerable.ToCollectionString should produce expected result (Object)")]
449+
public void ToCollectionStringShouldProduceExpectedResultObject()
450+
{
451+
// Given
452+
object[] values = [123, "abc", true, 123.456];
453+
const string expected = "[123, abc, True, 123.456]";
454+
455+
// When
456+
string actual = values.ToCollectionString();
457+
458+
// Then
459+
Assert.Equal(expected, actual);
460+
}
461+
462+
[Fact(DisplayName = "IEnumerable.ToCollectionString should produce expected result (String)")]
463+
public void ToCollectionStringShouldProduceExpectedResultString()
464+
{
465+
// Given
466+
string[] values = ["abc", "xyz", "123"];
467+
const string expected = "[abc, xyz, 123]";
468+
469+
// When
470+
string actual = values.ToCollectionString();
471+
472+
// Then
473+
Assert.Equal(expected, actual);
474+
}
475+
476+
[Fact(DisplayName = "IEnumerable.ToCollectionString should produce expected result (Int32)")]
477+
public void ToCollectionStringShouldProduceExpectedResultInt32()
478+
{
479+
// Given
480+
int[] values = [0, 1, 12, 123, 1234, -1, -12, -123, -1234];
481+
const string expected = "[0, 1, 12, 123, 1234, -1, -12, -123, -1234]";
482+
483+
// When
484+
string actual = values.ToCollectionString();
485+
486+
// Then
487+
Assert.Equal(expected, actual);
488+
}
489+
490+
[Fact(DisplayName = "IEnumerable.ToCollectionString should produce expected result (Int32, IFormattable)")]
491+
public void ToCollectionStringShouldProduceExpectedResultInt32IFormattable()
492+
{
493+
// Given
494+
int[] values = [0, 1, 12, 123, 1234, -1, -12, -123, -1234];
495+
const string expected = "[£0.00, £1.00, £12.00, £123.00, £1,234.00, -£1.00, -£12.00, -£123.00, -£1,234.00]";
496+
497+
// When
498+
string actual = values.ToCollectionString("C", CultureInfo.GetCultureInfo("en-GB"));
499+
500+
// Then
501+
Assert.Equal(expected, actual);
502+
}
447503
}

OnixLabs.Core.UnitTests/OnixLabs.Core.UnitTests.csproj

+4-7
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
<LangVersion>12</LangVersion>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.3.2"/>
9-
<PackageReference Include="xunit" Version="2.4.2"/>
10-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
8+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
9+
<PackageReference Include="xunit" Version="2.6.4" />
10+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
1111
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1212
<PrivateAssets>all</PrivateAssets>
1313
</PackageReference>
14-
<PackageReference Include="coverlet.collector" Version="3.0.2">
14+
<PackageReference Include="coverlet.collector" Version="6.0.0">
1515
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
<PrivateAssets>all</PrivateAssets>
1717
</PackageReference>
@@ -20,9 +20,6 @@
2020
<ProjectReference Include="..\OnixLabs.Core.UnitTests.Data\OnixLabs.Core.UnitTests.Data.csproj"/>
2121
<ProjectReference Include="..\OnixLabs.Core\OnixLabs.Core.csproj"/>
2222
</ItemGroup>
23-
<ItemGroup>
24-
<Folder Include="Text"/>
25-
</ItemGroup>
2623
<ItemGroup>
2724
<Using Include="OnixLabs.Core.Preconditions" Static="True"/>
2825
<Using Include="OnixLabs.Core.Collections.Collection" Static="True"/>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
// Copyright 2020-2023 ONIXLabs
2+
//
3+
// Licensed under the Apache License, Version 2.0 (the "License");
4+
// you may not use this file except in compliance with the License.
5+
// You may obtain a copy of the License at
6+
//
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
//
9+
// Unless required by applicable law or agreed to in writing, software
10+
// distributed under the License is distributed on an "AS IS" BASIS,
11+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
// See the License for the specific language governing permissions and
13+
// limitations under the License.
14+
15+
using System.Text;
16+
using OnixLabs.Core.Text;
17+
using Xunit;
18+
19+
namespace OnixLabs.Core.UnitTests.Text;
20+
21+
public sealed class StringBuilderExtensionTests
22+
{
23+
[Fact(DisplayName = "StringBuilder.Append should produce the expected result")]
24+
public void StringBuilderAppendShouldProduceTheExpectedResult()
25+
{
26+
// Given
27+
StringBuilder builder = new("ABC");
28+
29+
// When
30+
builder.Append("XYZ", 123, false);
31+
32+
// Then
33+
Assert.Equal("ABCXYZ123False", builder.ToString());
34+
}
35+
36+
[Fact(DisplayName = "StringBuilder.Prepend should produce the expected result")]
37+
public void StringBuilderPrependShouldProduceTheExpectedResult()
38+
{
39+
// Given
40+
StringBuilder builder = new("ABC");
41+
42+
// When
43+
builder.Prepend("XYZ", 123, false);
44+
45+
// Then
46+
Assert.Equal("XYZ123FalseABC", builder.ToString());
47+
}
48+
49+
[Fact(DisplayName = "StringBuilder.Trim should produce the expected result (char)")]
50+
public void StringBuilderTrimShouldProduceTheExpectedResultChar()
51+
{
52+
// Given
53+
StringBuilder builder = new("###ABC###");
54+
55+
// When
56+
builder.Trim('#');
57+
58+
// Then
59+
Assert.Equal("ABC", builder.ToString());
60+
}
61+
62+
[Fact(DisplayName = "StringBuilder.TrimEnd should produce the expected result (char)")]
63+
public void StringBuilderTrimEndShouldProduceTheExpectedResultChar()
64+
{
65+
// Given
66+
StringBuilder builder = new("###ABC###");
67+
68+
// When
69+
builder.TrimEnd('#');
70+
71+
// Then
72+
Assert.Equal("###ABC", builder.ToString());
73+
}
74+
75+
[Fact(DisplayName = "StringBuilder.TrimStart should produce the expected result (char)")]
76+
public void StringBuilderTrimStartShouldProduceTheExpectedResultChar()
77+
{
78+
// Given
79+
StringBuilder builder = new("###ABC###");
80+
81+
// When
82+
builder.TrimStart('#');
83+
84+
// Then
85+
Assert.Equal("ABC###", builder.ToString());
86+
}
87+
88+
[Fact(DisplayName = "StringBuilder.Trim should produce the expected result (string)")]
89+
public void StringBuilderTrimShouldProduceTheExpectedResultString()
90+
{
91+
// Given
92+
StringBuilder builder = new("#-#ABC#-#");
93+
94+
// When
95+
builder.Trim("#-#");
96+
97+
// Then
98+
Assert.Equal("ABC", builder.ToString());
99+
}
100+
101+
[Fact(DisplayName = "StringBuilder.TrimEnd should produce the expected result (string)")]
102+
public void StringBuilderTrimEndShouldProduceTheExpectedResultString()
103+
{
104+
// Given
105+
StringBuilder builder = new("#-#ABC#-#");
106+
107+
// When
108+
builder.TrimEnd("#-#");
109+
110+
// Then
111+
Assert.Equal("#-#ABC", builder.ToString());
112+
}
113+
114+
[Fact(DisplayName = "StringBuilder.TrimStart should produce the expected result (string)")]
115+
public void StringBuilderTrimStartShouldProduceTheExpectedResultString()
116+
{
117+
// Given
118+
StringBuilder builder = new("#-#ABC#-#");
119+
120+
// When
121+
builder.TrimStart("#-#");
122+
123+
// Then
124+
Assert.Equal("ABC#-#", builder.ToString());
125+
}
126+
127+
[Fact(DisplayName = "StringBuilder.Wrap should produce the expected result (char)")]
128+
public void StringBuilderWrapShouldProduceTheExpectedResultChar()
129+
{
130+
// Given
131+
StringBuilder builder = new("ABC");
132+
133+
// When
134+
builder.Wrap('(', ')');
135+
136+
// Then
137+
Assert.Equal("(ABC)", builder.ToString());
138+
}
139+
140+
[Fact(DisplayName = "StringBuilder.Wrap should produce the expected result (string)")]
141+
public void StringBuilderWrapShouldProduceTheExpectedResultString()
142+
{
143+
// Given
144+
StringBuilder builder = new("ABC");
145+
146+
// When
147+
builder.Wrap("123", "XYZ");
148+
149+
// Then
150+
Assert.Equal("123ABCXYZ", builder.ToString());
151+
}
152+
}

0 commit comments

Comments
 (0)