Unit Test Missing

Each live file should have unit test file, with the same name.

Incorrect:

main/
-----foo.eo
-----...
tests/
-----bar-tests.eo
-----...

Correct:

main/
-----foo.eo
-----...
tests/
-----foo-tests.eo
-----...