/**
  * Test if we can update the option and check the new bool
  *
  * @covers Yoast_GA_Options::option_value_to_bool()
  */
 public function test_option_value_to_bool_AND_update_option()
 {
     $this->test_update_option();
     $settings_manual_ua = $this->class_instance->option_value_to_bool('manual_ua_code');
     $this->assertTrue($settings_manual_ua);
 }