This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <SD.h> | |
#include <Lucky.h> | |
const int chipSelect = 4; | |
void setup() { | |
Serial.begin(9600); | |
while(!Serial); | |
// Start the accelerometer board |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@RunWith(Parameterized.class) | |
public class ApiContractTest { | |
private UrlValidator urlValidator = new UrlValidator(new String[]{"http","https"}); | |
private Api toTest; | |
public ApiContractTest(Api impl, String name){ | |
this.toTest = impl; | |
} | |
@Parameterized.Parameters(name = "{1}") |