Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Started work on ENetConnection tests #101723

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions COPYRIGHT.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@
# building them into the Godot binary, you may remove the corresponding
# license details from this file.

#testing what it looks like when I make a change

-----------------------------------------------------------------------

Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Expand Down
12 changes: 12 additions & 0 deletions tests/Modules/Enet/test_enet.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#ifndef TEST_ENET_H
#define TEST_ENET_H

#include "tests/test_macros.h"

namespace TestEnet {

void check_connection_creation();
void check_packeds_received();
void check_destroy();
void check_flush();
}