Skip to content

Commit 1ecc034

Browse files
committed
renaming
1 parent dc3fc5a commit 1ecc034

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/src/cycle_count.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
use crate::{util, score, labels, playfield};
22

33
pub fn count_cycles() {
4-
test_hz_cycles();
5-
test_max_score_cycles();
6-
test_mode_score_cycles();
4+
count_hz_cycles();
5+
count_max_score_cycles();
6+
count_mode_score_cycles();
77
}
88

9-
fn test_hz_cycles() {
9+
fn count_hz_cycles() {
1010
// check max hz calculation amount
1111
let mut emu = util::emulator(None);
1212

@@ -49,7 +49,7 @@ fn test_hz_cycles() {
4949
println!("hz display most cycles to vblank: {}", highest);
5050
}
5151

52-
fn test_max_score_cycles() {
52+
fn count_max_score_cycles() {
5353
// check max scoring cycle amount
5454
let mut emu = util::emulator(None);
5555

@@ -80,7 +80,7 @@ fn test_max_score_cycles() {
8080
println!("scoring routine most cycles: {}", highest);
8181
}
8282

83-
fn test_mode_score_cycles() {
83+
fn count_mode_score_cycles() {
8484
// check clock cycles frames in each mode
8585
let mut emu = util::emulator(None);
8686

0 commit comments

Comments
 (0)