Add skeleton tests with TODO comments
This commit is contained in:
parent
953301c38f
commit
e6ca5297dc
1 changed files with 25 additions and 0 deletions
|
@ -218,4 +218,29 @@ fn test_mat_n() {
|
||||||
assert dmat2::size_of() == dmat2::rows() * dmat2::cols() * 8;
|
assert dmat2::size_of() == dmat2::rows() * dmat2::cols() * 8;
|
||||||
assert dmat3::size_of() == dmat3::rows() * dmat3::cols() * 8;
|
assert dmat3::size_of() == dmat3::rows() * dmat3::cols() * 8;
|
||||||
assert dmat4::size_of() == dmat4::rows() * dmat4::cols() * 8;
|
assert dmat4::size_of() == dmat4::rows() * dmat4::cols() * 8;
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_radians() {
|
||||||
|
// TODO: unit tests
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_degrees() {
|
||||||
|
// TODO: unit tests
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_rotation() {
|
||||||
|
// TODO: unit tests
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_euler() {
|
||||||
|
// TODO: unit tests
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn test_quat() {
|
||||||
|
// TODO: unit tests
|
||||||
}
|
}
|
Loading…
Reference in a new issue