// g++ --std=c++11 test.cpp #include "test.h" #include "test.h" #include "FastLED.h" #include "fl/namespace.h" FASTLED_USING_NAMESPACE #define NUM_LEDS 1000 #define DATA_PIN 2 #define CLOCK_PIN 3 CRGB leds[NUM_LEDS]; TEST_CASE("Simple") { FastLED.addLeds(leds, NUM_LEDS); }