rspec/rules/S3577/csharp/rule.adoc
Alban Auzeill 2c306d110e Fix code block ambiguity with old header style
Ensure blank line before list and clean the one leading space
2020-06-30 17:16:12 +02:00

20 lines
295 B
Plaintext

include::../description.adoc[]
== Noncompliant Code Example
With the default value: <code>^((Test|IT)[a-zA-Z0-9]+|[A-Z][a-zA-Z0-9]*(Test|IT|TestCase|ITCase))$</code>
----
[TestClass]
public class Foo // Noncompliant
{
----
== Compliant Solution
----
[TestClass]
public class FooTest
{
----