From e6ca5297dc68971a2b1d926f469330f89c80f3da Mon Sep 17 00:00:00 2001 From: Brendan Zabarauskas Date: Tue, 27 Nov 2012 12:40:05 +1000 Subject: [PATCH] Add skeleton tests with TODO comments --- src/test/test_gltypes.rs | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/src/test/test_gltypes.rs b/src/test/test_gltypes.rs index cc08844..5383745 100644 --- a/src/test/test_gltypes.rs +++ b/src/test/test_gltypes.rs @@ -218,4 +218,29 @@ fn test_mat_n() { assert dmat2::size_of() == dmat2::rows() * dmat2::cols() * 8; assert dmat3::size_of() == dmat3::rows() * dmat3::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 } \ No newline at end of file