Source code
Revision control
Copy as Markdown
Other Tools
const SUCCESS = true;
const FAILURE = false;
function get_test_cases(port) {
return [
];
}
function get_default_expectations() {
return [
SUCCESS, // hosts[][]
FAILURE, // hosts[][www]
FAILURE, // hosts[][www1]
FAILURE, // hosts[][www2]
FAILURE, // hosts[][天気の良い日]
FAILURE, // hosts[][élève]
FAILURE, // hosts[alt][]
FAILURE, // hosts[alt][www]
FAILURE, // hosts[alt][www1]
FAILURE, // hosts[alt][www2]
FAILURE, // hosts[alt][天気の良い日]
FAILURE, // hosts[alt][élève]
];
}
function get_wildcard_expectations() {
return [
SUCCESS, // hosts[][]
FAILURE, // hosts[][www]
FAILURE, // hosts[][www1]
FAILURE, // hosts[][www2]
FAILURE, // hosts[][天気の良い日]
FAILURE, // hosts[][élève]
FAILURE, // hosts[alt][]
SUCCESS, // hosts[alt][www]
SUCCESS, // hosts[alt][www1]
SUCCESS, // hosts[alt][www2]
SUCCESS, // hosts[alt][天気の良い日]
SUCCESS, // hosts[alt][élève]
];
}