fix character selection screen?
This commit is contained in:
@@ -18,3 +18,17 @@ func BenchmarkDataReader(b *testing.B) {
|
||||
gr.GetData()
|
||||
}
|
||||
}
|
||||
|
||||
func BenchmarkPF(b *testing.B) {
|
||||
process, err := NewProcess()
|
||||
require.NoError(b, err)
|
||||
|
||||
gr := NewGameReader(process)
|
||||
gr.GetData()
|
||||
|
||||
b.ResetTimer()
|
||||
for n := 0; n < b.N; n++ {
|
||||
gr.GetData()
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user