/**
  * @expectedException \yii\base\NotSupportedException
  */
 public function testExceptionIsRaisedWhenInsertIsCalled()
 {
     $node = new Tree(['name' => 'Node']);
     $node->insert();
 }