The query is supposed to get SMALLER

Still better than 9 different queries all with 1 minor change i guess.
This commit is contained in:
David Markowitz
2023-05-03 00:38:38 -07:00
parent b5e3bd22e3
commit a3626a3b53
4 changed files with 242 additions and 156 deletions

View File

@@ -6,6 +6,7 @@
#include "dServer.h"
#include "EntityInfo.h"
#include "EntityManager.h"
#include "Database.h"
#include "dConfig.h"
#include <gtest/gtest.h>
@@ -32,6 +33,7 @@ protected:
Game::logger = new dLogger("./testing.log", true, true);
Game::server = new dServerMock();
Game::config = new dConfig("worldconfig.ini");
Database::Connect(Game::config->GetValue("mysql_host"), Game::config->GetValue("mysql_database"), Game::config->GetValue("mysql_username"), Game::config->GetValue("mysql_password"));
}
void TearDownDependencies() {