Fix tests

This commit is contained in:
Pascal Serrarens 2025-05-26 12:27:09 +02:00
parent 6e860be913
commit 0920f99c1e
5 changed files with 5 additions and 2 deletions

View File

@ -2,6 +2,7 @@
#include <gtest/gtest.h>
#include <limits>
#include <math.h>
#include <chrono>
#include "Polar.h"
#include "Spherical.h"

View File

@ -2,6 +2,7 @@
#include <gtest/gtest.h>
#include <limits>
#include <math.h>
#include <chrono>
#include "Spherical.h"
#include "Vector3.h"

View File

@ -2,6 +2,7 @@
#include <gtest/gtest.h>
#include <limits>
#include <math.h>
#include <chrono>
#include "Spherical.h"

View File

@ -59,7 +59,7 @@ TEST(Participant, SiteParticipant) {
TEST(Participant, ThingMsg) {
SiteServer* siteServer = new SiteServer(7681);
ParticipantUDP* participant = new ParticipantUDP("127.0.0.1", 7681, 7682);
Thing* thing = new Thing(participant);
Thing* thing = new Thing();
thing->SetName("First Thing");
thing->SetModel("https://passer.life/extras/ant.jpg");

View File

@ -24,7 +24,7 @@ TEST(RoboidControlSuite, HiddenParticipant) {
TEST(RoboidControlSuite, IsolatedParticipant) {
ParticipantUDP* participant = ParticipantUDP::Isolated();
Thing* thing = new Thing(participant);
Thing* thing = new Thing();
unsigned long milliseconds = Thing::GetTimeMs();
unsigned long startTime = milliseconds;