-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtests.h
More file actions
27 lines (18 loc) · 645 Bytes
/
tests.h
File metadata and controls
27 lines (18 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef TESTS_H
#define TESTS_H
// Test for implementation of correct normalize() function
bool test_normalize();
// Test for implementation of correct blur() function
bool test_blur();
// Test for implementation of correct helper functions
bool test_helpers();
// Test for implementation of correct initialize_beliefs() function
bool test_initialize();
// Test for implementation of correct move() function
bool test_move();
// Test for implementation of correct sense() function
bool test_sense();
// Test for implementation of correct localizer functions
bool test_localizer();
// bool test_simulation(); // todo
#endif /* TESTS_H */