Hello!
This is less of a issue and more of a general question for guidance on testing serialization.
Slightly related to this problem: [Content removed]
We’ve had to create a custom net serializer for one of our types, and writing some unit tests would make us feel very secure here. However, setting up a test harness to ensure serialization is correct for just this one net serializer seems like a lot of wasted work considering there is a nice fixture `TTestNetSerializerFixture` which is a part of the “ReplicationSystemTestPlugin”.
I spent some time trying to create an extension plugin which includes this, and moving some header files around in the TestPlugin to allow extracting the framework. But the farther I headed down this path, the harder it seemed to pull off without disturbing a lot of the existing plugin structure.
I’d really like to gain more confidence in our custom net serializer, do you have any advice for how to write an automated test that could do that?
Thanks in advance, Al.