Neos\Neos\Tests\Unit\Domain\Model\SiteTest::theStateCanBeSetAndRetrieved PHP Method

theStateCanBeSetAndRetrieved() public method

    public function theStateCanBeSetAndRetrieved()
    {
        $site = new Site('');
        $site->setState(Site::STATE_ONLINE);
        $this->assertSame(Site::STATE_ONLINE, $site->getState());
    }