manually coerce tests and remove uneeded or ones that will neeed much more work

This commit is contained in:
Aronwk
2025-09-01 21:37:32 -05:00
parent 889ee5bd14
commit e66f82ff07
24 changed files with 118 additions and 801 deletions

View File

@@ -28,7 +28,7 @@ protected:
/**
* Test ControllablePhysicsComponent initial update serialization
*/
TEST_F(ControllablePhysicsComponentTest, ControllablePhysicsComponentSerializeInitialUpdateTest) {
TEST_F(ControllablePhysicsComponentTest, SerializeInitialUpdateTest) {
bitStream.Reset();
// Test initial update serialization
@@ -47,7 +47,7 @@ TEST_F(ControllablePhysicsComponentTest, ControllablePhysicsComponentSerializeIn
/**
* Test ControllablePhysicsComponent jetpack mode serialization
*/
TEST_F(ControllablePhysicsComponentTest, ControllablePhysicsComponentSerializeJetpackTest) {
TEST_F(ControllablePhysicsComponentTest, SerializeJetpackTest) {
bitStream.Reset();
// Set jetpack mode
@@ -64,7 +64,7 @@ TEST_F(ControllablePhysicsComponentTest, ControllablePhysicsComponentSerializeJe
/**
* Test ControllablePhysicsComponent regular update serialization
*/
TEST_F(ControllablePhysicsComponentTest, ControllablePhysicsComponentSerializeRegularUpdateTest) {
TEST_F(ControllablePhysicsComponentTest, SerializeRegularUpdateTest) {
bitStream.Reset();
// Do an initial update to clear dirty flags
@@ -82,7 +82,7 @@ TEST_F(ControllablePhysicsComponentTest, ControllablePhysicsComponentSerializeRe
/**
* Test ControllablePhysicsComponent position change serialization
*/
TEST_F(ControllablePhysicsComponentTest, ControllablePhysicsComponentSerializePositionChangeTest) {
TEST_F(ControllablePhysicsComponentTest, SerializePositionChangeTest) {
bitStream.Reset();
// Change position to trigger dirty position flag
@@ -100,4 +100,4 @@ TEST_F(ControllablePhysicsComponentTest, ControllablePhysicsComponentSerializePo
EXPECT_EQ(pos.x, 100.0f);
EXPECT_EQ(pos.y, 200.0f);
EXPECT_EQ(pos.z, 300.0f);
}
}