• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

samsmithnz / GitHubActionsDotNet / 7900757945

14 Feb 2024 11:53AM CUT coverage: 76.33%. Remained the same
7900757945

Pull #133

github

web-flow
Merge 652e32ffc into 5ca82b379
Pull Request #133: Bump the core group in /src/GitHubActionsDotNet with 1 update

144 of 222 branches covered (64.86%)

Branch coverage included in aggregate %.

559 of 699 relevant lines covered (79.97%)

13.88 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/GitHubActionsDotNet/Common/StringExtension.cs
1
using System;
2

3
namespace GitHubActionsDotNet.Common
4
{
5
    public static class StringExtension
6
    {
7
        //.NET Standard 2.0 doesn't have a string split function for strings, so adding it in here.
8
        //.NET Standard 2.1 DOES have a string split function, but that reduces compatible frameworks (for example, .NET Framework is not compatible): (https://docs.microsoft.com/en-us/dotnet/standard/net-standard#net-implementation-support)
9
        public static string[] Split(this string input, string sep)
10
        {
11
            return input.Split(new[] { sep }, StringSplitOptions.None);
×
12
        }
13
    }
14
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc