mirror of
https://github.com/thunderbrewhq/squall.git
synced 2025-12-12 02:22:30 +00:00
chore(format): reformat test suites
This commit is contained in:
parent
ced42bbfed
commit
7c6521a547
2 changed files with 3 additions and 3 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
#include "Test.hpp"
|
|
||||||
#include "List.hpp"
|
#include "List.hpp"
|
||||||
|
#include "Test.hpp"
|
||||||
|
|
||||||
struct TestListNode : TSLinkedNode<TestListNode> {
|
struct TestListNode : TSLinkedNode<TestListNode> {
|
||||||
uint32_t index = 0;
|
uint32_t index = 0;
|
||||||
|
|
@ -21,6 +21,6 @@ TEST_CASE("TSList::LinkToHead", "[list]") {
|
||||||
|
|
||||||
REQUIRE(list.Head() == node);
|
REQUIRE(list.Head() == node);
|
||||||
|
|
||||||
delete(node);
|
delete node;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
#include "Test.hpp"
|
|
||||||
#include "Memory.hpp"
|
#include "Memory.hpp"
|
||||||
|
#include "Test.hpp"
|
||||||
|
|
||||||
TEST_CASE("SMemAlloc", "[memory]") {
|
TEST_CASE("SMemAlloc", "[memory]") {
|
||||||
SECTION("allocates memory") {
|
SECTION("allocates memory") {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue