Console Controller Not Working

Hello,

I have a simple Console Controller:




<?php


namespace app\commands;


use yii\console\Controller;


class TestController extends Controller

{

    public function actionTest()

    {

        echo "TEST";

    }

}



and try to call it using:


./yii test/test

But all I get is this error:


Error: Unknown command "test/test".

Thanks for your help,

Urkman