This repository has been archived on 2025-03-15. You can view files and clone it, but cannot push or open issues or pull requests.
fluttershy 2e54a17b5d fixes
2025-01-29 16:06:47 +05:00

9 lines
372 B
C++

/*
#include <gtest/gtest.h>
#include <includes.hpp>
#include <network.hpp>
TEST(NetworkManagerTest, RequestReturnsExpectedValue) {
NetworkManager& networkManager = NetworkManager::getInstance();
EXPECT_FALSE(networkManager.request(HttpMethods::POST, DiscordEndpoints::details::latest + "/channels/939957962972229634/messages", { "content", "test" }).empty());
}
*/