19 lines
290 B
D
19 lines
290 B
D
import testparser;
|
|
import std.stdio;
|
|
|
|
int main()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
unittest
|
|
{
|
|
string input = "aba";
|
|
auto parser = new Testparser.Parser(input);
|
|
assert(parser.parse() == true);
|
|
|
|
input = "abb";
|
|
parser = new Testparser.Parser(input);
|
|
assert(parser.parse() == true);
|
|
}
|