mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-09-07 07:41:26 +00:00
manually coerce tests and remove uneeded or ones that will neeed much more work
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user