mirror of
https://github.com/yuzu-emu/FasTC.git
synced 2024-11-24 09:55:51 +01:00
Stub out remaining tests
This commit is contained in:
parent
4ca6141be6
commit
d4ec0a3b3b
@ -132,3 +132,38 @@ TEST(MatrixBase, CastVector) {
|
||||
}
|
||||
}
|
||||
|
||||
TEST(MatrixBase, MatrixMultiplication) {
|
||||
// Stub
|
||||
EXPECT_EQ(0, 1);
|
||||
}
|
||||
|
||||
TEST(MatrixBase, VectorMultiplication) {
|
||||
// Stub
|
||||
EXPECT_EQ(0, 1);
|
||||
}
|
||||
|
||||
TEST(MatrixSquare, Constructors) {
|
||||
// Stub
|
||||
EXPECT_EQ(0, 1);
|
||||
}
|
||||
|
||||
TEST(MatrixSquare, EigenvalueCalculation) {
|
||||
// Stub
|
||||
EXPECT_EQ(0, 1);
|
||||
}
|
||||
|
||||
TEST(Matrix2x2, Constructors) {
|
||||
// Stub
|
||||
EXPECT_EQ(0, 1);
|
||||
}
|
||||
|
||||
TEST(Matrix3x3, Constructors) {
|
||||
// Stub
|
||||
EXPECT_EQ(0, 1);
|
||||
}
|
||||
|
||||
TEST(Matrix4x4, Constructors) {
|
||||
// Stub
|
||||
EXPECT_EQ(0, 1);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user