Skip to content

Commit dae54da

Browse files
feature/random-extensions (#80)
* Added `Random.Next` that obtains a random element from a list of elements. * Removed example code from playground.
1 parent fc0d042 commit dae54da

File tree

3 files changed

+74
-3
lines changed

3 files changed

+74
-3
lines changed

Directory.Build.props

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
3-
<Version>9.3.0</Version>
4-
<PackageVersion>9.3.0</PackageVersion>
5-
<AssemblyVersion>9.3.0</AssemblyVersion>
3+
<Version>9.4.0</Version>
4+
<PackageVersion>9.4.0</PackageVersion>
5+
<AssemblyVersion>9.4.0</AssemblyVersion>
66
</PropertyGroup>
77
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// Copyright 2020 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;
16+
using Xunit;
17+
18+
namespace OnixLabs.Core.UnitTests;
19+
20+
public sealed class RandomExtensionTests
21+
{
22+
[Fact(DisplayName = "Random.Next should produce the expected result")]
23+
public void RandomNextShouldProduceExpectedResult()
24+
{
25+
// Given
26+
Random random = new(0);
27+
const string expected = "klm";
28+
string[] values = ["abc", "def", "hij", "klm", "xyz"];
29+
30+
// When
31+
string actual = random.Next(values);
32+
33+
// Then
34+
Assert.Equal(expected, actual);
35+
}
36+
}

OnixLabs.Core/Extensions.Random.cs

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// Copyright 2020 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;
16+
using System.Collections.Generic;
17+
using System.ComponentModel;
18+
19+
namespace OnixLabs.Core;
20+
21+
/// <summary>
22+
/// Provides extension methods for objects.
23+
/// </summary>
24+
[EditorBrowsable(EditorBrowsableState.Never)]
25+
public static class RandomExtensions
26+
{
27+
/// <summary>
28+
/// Obtains a random element from the specified <see cref="IReadOnlyList{T}"/> items.
29+
/// </summary>
30+
/// <param name="random">The current <see cref="Random"/> instance.</param>
31+
/// <param name="items">The <see cref="IReadOnlyList{T}"/> items from which to obtain a random element.</param>
32+
/// <typeparam name="T">The underlying type of the <see cref="IReadOnlyList{T}"/> collection.</typeparam>
33+
/// <returns>Returns a random element from the specified <see cref="IReadOnlyList{T}"/> items.</returns>
34+
public static T Next<T>(this Random random, IReadOnlyList<T> items) => items[random.Next(0, items.Count)];
35+
}

0 commit comments

Comments
 (0)