user = $GLOBALS['current_user']; $this->user->setPreference('default_decimal_seperator', '.'); $this->loc = new Localization(); } public function tearDown() { unset($GLOBALS['current_user']); } public function testGetDecimalSeparator() { $this->assertSame('.', $this->loc->getDecimalSeparator($this->user)); } }