Skip to content

Commit

Permalink
Merge pull request #497 from CBATeam/add-network-test
Browse files Browse the repository at this point in the history
add network component test to 'CBA_fnc_test'
  • Loading branch information
Killswitch00 committed Sep 7, 2016
2 parents bec2594 + d7bb3d2 commit 1f8095a
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion addons/main/test.sqf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include "script_component.hpp"

#define CATEGORIES ["arrays", "common", "diagnostic", "hashes", "strings", "vectors", "jr"]
#define CATEGORIES ["arrays", "common", "diagnostic", "hashes", "network", "strings", "vectors", "jr"]

SCRIPT(test);

Expand Down
20 changes: 20 additions & 0 deletions addons/network/test.sqf
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// -----------------------------------------------------------------------------
// Automatically generated by 'functions_config.rb'
// DO NOT MANUALLY EDIT THIS FILE!
// -----------------------------------------------------------------------------
#define DEBUG_MODE_FULL
#include "script_component.hpp"

#define TESTS ["network"]

SCRIPT(test-network);

// ----------------------------------------------------------------------------

LOG("=== Testing Network ===");

{
call compile preprocessFileLineNumbers format ["\x\cba\addons\network\test_%1.sqf", _x];
} forEach TESTS;

nil;

0 comments on commit 1f8095a

Please sign in to comment.