/** * Test reading/getting a token from DB correctly sets meta. * @since 2.6.0 */ public function test_wc_payment_token_echeck_read_pulls_meta() { $token = WC_Helper_Payment_Token::create_eCheck_token(); $token_id = $token->get_id(); $token_read = new WC_Payment_Token_eCheck(); $token_read->read($token_id); $this->assertEquals('1234', $token_read->get_last4()); }