mirror of
https://github.com/yuzu-emu/FasTC
synced 2024-11-22 16:23:41 +00:00
Stub out remaining tests
This commit is contained in:
parent
4ca6141be6
commit
d4ec0a3b3b
1 changed files with 35 additions and 0 deletions
|
@ -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 a new issue