mirror of
https://github.com/thunderbrewhq/squall.git
synced 2026-02-04 00:49:08 +00:00
chore(style): clean up line endings in event tests
This commit is contained in:
parent
d98b5dc45b
commit
85590192d4
3 changed files with 708 additions and 713 deletions
|
|
@ -1,6 +1,5 @@
|
|||
#include "EventTest.hpp"
|
||||
|
||||
|
||||
static void STORMAPI TestBreakEventHandlerSelf(void* data) {
|
||||
EventHandlerTest::RegisterCall(10, data);
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,6 @@
|
|||
|
||||
std::deque<EventHandlerCalledWith> EventHandlerCallResults;
|
||||
|
||||
|
||||
void STORMAPI TestEventHandler1(void* data) {
|
||||
EventHandlerTest::RegisterCall(1, data);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
#include <deque>
|
||||
#include <sstream>
|
||||
|
||||
|
||||
struct EventHandlerCalledWith {
|
||||
int handler;
|
||||
void* data;
|
||||
|
|
@ -39,13 +38,11 @@ struct EventHandlerTest {
|
|||
}
|
||||
};
|
||||
|
||||
|
||||
void STORMAPI TestEventHandler1(void* data);
|
||||
void STORMAPI TestEventHandler2(void* data);
|
||||
void STORMAPI TestEventHandler3(void* data);
|
||||
void STORMAPI TestEventHandler4(void* data);
|
||||
|
||||
|
||||
// Helpers for comparing EventHandlerCalledWith structs
|
||||
std::ostream& operator <<(std::ostream& os, EventHandlerCalledWith const& value);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue