Skip to content

Commit

Permalink
Remove TestAllWithoutForkingEverything
Browse files Browse the repository at this point in the history
  • Loading branch information
jkrvivian committed Nov 9, 2023
1 parent e6dd308 commit 2500e79
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions pkg/protocol/engine/mempool/tests/tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,22 +18,6 @@ const (
TestMemoryReleaseMaxMemoryIncreaseFactor = 1.20
)

func TestAllWithoutForkingEverything(t *testing.T, frameworkProvider func(*testing.T) *TestFramework) {
for testName, testCase := range map[string]func(*testing.T, *TestFramework){
"TestProcessTransaction": TestProcessTransaction,
"TestProcessTransactionsOutOfOrder": TestProcessTransactionsOutOfOrder,
"TestSetInclusionSlot": TestSetInclusionSlot,
"TestSetTransactionOrphanage": TestSetTransactionOrphanage,
"TestStateDiff": TestStateDiff,
"TestMemoryRelease": TestMemoryRelease,
"TestInvalidTransaction": TestInvalidTransaction,
"TestStoreAttachmentInEvictedSlot": TestStoreAttachmentInEvictedSlot,
"TestConflictPropagationForkOnDoubleSpend": TestConflictPropagationForkOnDoubleSpend,
} {
t.Run(testName, func(t *testing.T) { testCase(t, frameworkProvider(t)) })
}
}

func TestAllWithForkingEverything(t *testing.T, frameworkProvider func(*testing.T) *TestFramework) {
for testName, testCase := range map[string]func(*testing.T, *TestFramework){
"TestConflictPropagationForkAll": TestConflictPropagationForkAll,
Expand Down

0 comments on commit 2500e79

Please sign in to comment.