<?php

namespace Tet\Test;

class Test
{
    /**
     * $news object.
     */
    protected $news;

    /**
     * Constructor.
     */
    public function __construct(\Tet\Test\Interfaces\NewsRepositoryInterface $news)
    {
        $this->news = $news;
    }

    /**
     * Returns count of test.
     *
     * @param array $filter
     *
     * @return int
     */
    public function count()
    {
        return  0;
    }
}