Skip to content

Commit 6c4b5c2

Browse files
Merge branch 'refs/heads/main' into release
2 parents 07cb34b + b48540e commit 6c4b5c2

File tree

173 files changed

+4562
-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.

173 files changed

+4562
-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)