Base:
44 references to ToString
Microsoft.AspNetCore.OpenApi (1)
Extensions\JsonNodeSchemaExtensions.cs (1)
241schema[OpenApiSchemaKeywords.PatternKeyword] = regexRouteConstraint.Constraint.ToString();
Microsoft.AspNetCore.Routing.Tests (9)
DefaultParameterPolicyFactoryTest.cs (1)
357Assert.Equal("\\\\d{1,2}", constraint.Constraint.ToString());
Patterns\RoutePatternFactoryTest.cs (8)
242c => Assert.Equal("foo", Assert.IsType<RegexRouteConstraint>(c.ParameterPolicy).Constraint.ToString()), 243c => Assert.Equal("bar", Assert.IsType<RegexRouteConstraint>(c.ParameterPolicy).Constraint.ToString()), 244c => Assert.Equal("^(baz)$", Assert.IsType<RegexRouteConstraint>(c.ParameterPolicy).Constraint.ToString())); 280c => Assert.Equal("^(fizz)$", Assert.IsType<RegexRouteConstraint>(c.ParameterPolicy).Constraint.ToString())); 287c => Assert.Equal("foo", Assert.IsType<RegexRouteConstraint>(c.ParameterPolicy).Constraint.ToString()), 288c => Assert.Equal("bar", Assert.IsType<RegexRouteConstraint>(c.ParameterPolicy).Constraint.ToString()), 289c => Assert.Equal("^(baz)$", Assert.IsType<RegexRouteConstraint>(c.ParameterPolicy).Constraint.ToString()), 375Assert.Equal("^(foo)$", regex.Constraint.ToString());
Microsoft.Build.BuildCheck.UnitTests (30)
EditorConfig_Tests.cs (30)
124Assert.Equal("^.*/abc$", matcher.Regex.ToString()); 136Assert.Equal("^.*/[^/]*$", matcher.Regex.ToString()); 147Assert.Equal("^.*/[^/]*\\.cs$", matcher.Regex.ToString()); 164Assert.Equal("^.*/.*\\.cs$", matcher.Regex.ToString()); 174Assert.Equal("^.*/\\.\\.\\.$", matcher.Regex.ToString()); 194Assert.Equal("^.*/ab.def$", matcher.Regex.ToString()); 207Assert.Equal("^.*/ab\\\\c$", matcher.Regex.ToString()); 218Assert.Equal("^.*/\\*.*\\*\\*[^/]*$", matcher.Regex.ToString()); 230Assert.Equal("^.*/\\?.\\?[^/]*\\?.$", matcher.Regex.ToString()); 244Assert.Equal(@"^.*/abc\{}def$", matcher.Regex.ToString()); 256Assert.Equal("^.*/abc,def$", matcher.Regex.ToString()); 269Assert.Equal("^.*/[^/]*\\.(?:cs|vb|fs)$", matcher.Regex.ToString()); 299Assert.Equal("^/(?:[^/]*\\.cs|subdir/test\\.vb)$", matcher.Regex.ToString()); 313Assert.Equal("^.*/(?:)$", matcher.Regex.ToString()); 325Assert.Equal("^.*/(?:[^/]*\\.cs)$", matcher.Regex.ToString()); 351Assert.Equal("^.*/(?:test(?:\\.cs|\\.vb)|other\\.(?:a(?:bb|cc)))$", matcher.Regex.ToString()); 371Assert.Equal("^.*/ab(?:-)cd(?:-|)ef$", matcher.Regex.ToString()); 385Assert.Equal("^.*/ab(?:cs|vb|fs)cd$", matcher.Regex.ToString()); 505Assert.Equal(@"^.*/[^/]*\.[cf]s$", matcher.Regex.ToString()); 516Assert.Equal(@"^.*/[^/]*\.[^cf]s$", matcher.Regex.ToString()); 529Assert.Equal(@"^.*/[^/]*\.[\^cf]s$", matcher.Regex.ToString()); 543Assert.Equal("^.*/[0-9]x$", matcher.Regex.ToString()); 556Assert.Equal("^.*/[^0-9]x$", matcher.Regex.ToString()); 569Assert.Equal("^.*/[ab0-9]x$", matcher.Regex.ToString()); 614Assert.Equal(@"^.*/[\[a]bc$", matcher.Regex.ToString()); 629Assert.Equal(@"^.*/[-ac]bd$", matcher.Regex.ToString()); 644Assert.Equal(@"^.*/[ac-]bd$", matcher.Regex.ToString()); 658Assert.Equal(@"^.*/[ab]]cd$", matcher.Regex.ToString()); 673Assert.Equal(@"^.*/[ab\\]cd$", matcher.Regex.ToString()); 686Assert.Equal(@"^.*/ab\[cd$", matcher.Regex.ToString());
Microsoft.Build.Engine.UnitTests (1)
BackEnd\SdkResolverLoader_Tests.cs (1)
263resolversManifestsFound.First().ResolvableSdkRegex.ToString().ShouldBe("1<.*");
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Protocol\Internal\Converters\RegexConverter.cs (1)
25writer.WriteStringValue(value.ToString());
xunit.assert (2)
StringAsserts.cs (2)
573 var formattedExpected = AssertHelper.ShortenAndEncodeString(expectedRegex.ToString()); 1385 throw MatchesException.ForMatchNotFound(expectedRegex.ToString(), actualString);