mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-09-06 23:31:18 +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 serialization of a BouncerComponent with pet enabled false
|
||||
*/
|
||||
TEST_F(BouncerTest, BouncerComponentSerializePetDisabledTest) {
|
||||
TEST_F(BouncerTest, SerializePetDisabledTest) {
|
||||
bitStream.Reset();
|
||||
|
||||
// Default state should have pet disabled
|
||||
@@ -49,7 +49,7 @@ TEST_F(BouncerTest, BouncerComponentSerializePetDisabledTest) {
|
||||
/**
|
||||
* Test serialization of a BouncerComponent with pet enabled true
|
||||
*/
|
||||
TEST_F(BouncerTest, BouncerComponentSerializePetEnabledTest) {
|
||||
TEST_F(BouncerTest, SerializePetEnabledTest) {
|
||||
bitStream.Reset();
|
||||
|
||||
// Enable pet and set bouncer state
|
||||
@@ -72,7 +72,7 @@ TEST_F(BouncerTest, BouncerComponentSerializePetEnabledTest) {
|
||||
/**
|
||||
* Test serialization of a BouncerComponent with pet enabled but bouncer disabled
|
||||
*/
|
||||
TEST_F(BouncerTest, BouncerComponentSerializePetEnabledBouncerDisabledTest) {
|
||||
TEST_F(BouncerTest, SerializePetEnabledBouncerDisabledTest) {
|
||||
bitStream.Reset();
|
||||
|
||||
// Enable pet but disable bouncer
|
||||
@@ -95,7 +95,7 @@ TEST_F(BouncerTest, BouncerComponentSerializePetEnabledBouncerDisabledTest) {
|
||||
/**
|
||||
* Test serialization during initial update
|
||||
*/
|
||||
TEST_F(BouncerTest, BouncerComponentSerializeInitialUpdateTest) {
|
||||
TEST_F(BouncerTest, SerializeInitialUpdateTest) {
|
||||
bitStream.Reset();
|
||||
|
||||
// Enable pet and set bouncer state
|
||||
@@ -113,4 +113,4 @@ TEST_F(BouncerTest, BouncerComponentSerializeInitialUpdateTest) {
|
||||
bool petBouncerEnabled;
|
||||
bitStream.Read(petBouncerEnabled);
|
||||
EXPECT_EQ(petBouncerEnabled, true);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user