Skip to content

Commit

Permalink
try this
Browse files Browse the repository at this point in the history
  • Loading branch information
connorivy committed Dec 3, 2024
1 parent 7168c27 commit a4b5f9d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
run: |
dotnet tool install --global dotnet-coverage
# export PATH="$PATH:/root/.dotnet/tools"
dotnet-coverage collect "dotnet run --project ./tests/MockMe.Tests.Runner/" -f cobertura -s ./CodeCoverage.runsettings
dotnet-coverage collect "dotnet test -c Debug" -f cobertura -s ./CodeCoverage.runsettings
- name: Generate report
uses: danielpalme/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion src/MockMe.Generator/MockStoreGenerator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ internal static partial class {StoreClassName}
public static Mock<T> {StoreMethodName}<T>(global::{NamespaceName}.DummyClass unusedInstance)
where T : global::{NamespaceName}.DummyClass
{{
throw new NotImplementedException();
throw new global::System.NotImplementedException();
}}
private static bool isPatched;
Expand Down

0 comments on commit a4b5f9d

Please sign in to comment.