0]); $this->assertSame('0.00', UserOrder::reduct()); } public function testReductUsesConfiguredReductionRange(): void { sysdata('plugin.wemall.config', [ 'enable_reduct' => 1, 'reduct_min' => '1.23', 'reduct_max' => '1.23', ]); $this->assertSame('1.23', UserOrder::reduct()); } protected function defineSchema(): void { } }