Skip to content

Commit

Permalink
reorder mutation and code coverage docs in sidebar (#1217)
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored Jan 22, 2025
1 parent 8dafce0 commit ba3c734
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/build/guides/testing/code-coverage.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Code Coverage
hide_table_of_contents: true
description: Code coverage tools find code not tested.
sidebar_position: 10
sidebar_position: 11
---

Measuring code coverage uses tools to identify lines of code that are and aren't executed by tests. Code coverage stats can give us an idea of how much of a contract is actually tested by its tests.
Expand Down
2 changes: 1 addition & 1 deletion docs/build/guides/testing/mutation-testing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: Mutation Testing
hide_table_of_contents: true
description: Mutation testing finds code not tested.
sidebar_position: 11
sidebar_position: 10
---

Mutation testing is making changes to a program, either manually or automatically, to identify changes that can be made that don't get caught by tests.
Expand Down

0 comments on commit ba3c734

Please sign in to comment.