✅ Automated Testing Network Code
This is partially a general programming question too. I'm currently making a video game netcode framework, and wanted to start automating tests that use the full framework (integration tests?) by starting a server and having multiple clients join. Is there something in the c#/.net ecosystem that I can use for this, and is there a common way to set this kind of test up?
My current plan is to create a dummy server and client program that each run through a bunch of test cases, and have those started with a bash script. But beyond that I'm not really sure what to do.
3 Replies
I normally just use a unit-testing framework for integration tests: works fine
Unknown User•2w ago
Message Not Public
Sign In & Join Server To View
ok thanks I think I was just overthinking it