Skip to content

Commit

Permalink
Code review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
MattKotsenas committed Jun 10, 2024
1 parent 122f996 commit 17b89e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -139,9 +139,9 @@ internal interface IFoo
int Do(List<string> l);
}
internal class MyUnitTests
internal class UnitTest
{
private void MyGoodSetupAndReturns()
private void Test()
{
{{mock}}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,27 +30,21 @@ await Verifier.VerifyAnalyzerAsync(
public interface ISampleInterface
{
int Calculate(int a, int b);
int TestProperty { get; set; }
}
public abstract class BaseSampleClass
{
public int Calculate() => 0;
public abstract int Calculate(int a, int b);
public abstract int Calculate(int a, int b, int c);
}
public class SampleClass : BaseSampleClass
{
public override int Calculate(int a, int b) => 0;
public sealed override int Calculate(int a, int b, int c) => 0;
public virtual int DoSth() => 0;
public int Property { get; set; }
}
Expand Down

0 comments on commit 17b89e5

Please sign in to comment.