/**
  * Check the options check function, we need at least the current dataset
  *
  * @covers Yoast_GA_Options::check_options()
  */
 public function test_check_options()
 {
     $options = $this->class_instance->get_options();
     $new_options = $this->class_instance->check_options($options);
     $this->assertEquals(count($options), count($new_options));
 }