-
-
Notifications
You must be signed in to change notification settings - Fork 360
/
Copy pathNaming.cs
29 lines (23 loc) · 862 Bytes
/
Naming.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
using System.Text.RegularExpressions;
using Humanizer;
namespace Generators;
internal static class Naming
{
internal static string ToMethodName(string property) =>
property.Dehumanize();
internal static string ToTestMethodName(params string[] path) =>
path.Unwords()
.Words()
.Select(Transform)
.Unwords()
.Underscore()
.Transform(To.SentenceCase);
private static string Transform(string str, int index) =>
index == 0 && int.TryParse(str, out var i)
? i.ToWords()
: str.Dehumanize();
private static IEnumerable<string> Words(this string str) =>
Regex.Split(str, @"\W+")
.Where(s => !string.IsNullOrWhiteSpace(s));
private static string Unwords(this IEnumerable<string> strs) => string.Join(' ', strs);
}