Skip to content

Commit

Permalink
Cleanup: re-format code by JetBrains CleanupCode Tool
Browse files Browse the repository at this point in the history
  • Loading branch information
ArturWincenciak committed Apr 2, 2024
1 parent 1746d21 commit 343f7df
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions UnitTests/DemoUnitTests.cs
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
namespace ReSharperCleanupCodeDemo.UnitTests;

/// <summary>
/// That is an example of unit test class that we usually do not want to clean up
/// For example another kind of code that we also do not clean up is a generated code (e.g. some rest client)
/// That is an example of unit test class that we usually do not want to clean up
/// For example another kind of code that we also do not clean up is a generated code (e.g. some rest client)
/// </summary>
internal class DemoUnitTests

Check notice on line 7 in UnitTests/DemoUnitTests.cs

View workflow job for this annotation

GitHub Actions / Inspect Code

"[UnusedType.Global] Class 'DemoUnitTests' is never used" on /home/runner/work/ReSharper_CleanupCode_Demo/ReSharper_CleanupCode_Demo/UnitTests/DemoUnitTests.cs(7,291)
{
public void GIVEN_something_WHEN_something_THEN_something()
{
public void GIVEN_something_WHEN_something_THEN_something() =>

Check notice on line 9 in UnitTests/DemoUnitTests.cs

View workflow job for this annotation

GitHub Actions / Inspect Code

"[UnusedMember.Global] Method 'GIVEN_something_WHEN_something_THEN_something' is never used" on /home/runner/work/ReSharper_CleanupCode_Demo/ReSharper_CleanupCode_Demo/UnitTests/DemoUnitTests.cs(9,323)
throw new NotImplementedException();
}
}

0 comments on commit 343f7df

Please sign in to comment.