| Conditions | 1 |
| Paths | 1 |
| Total Lines | 33 |
| Code Lines | 24 |
| Lines | 0 |
| Ratio | 0 % |
| 1 | <?php |
||
| 33 | public function testCreateClientByLojaControllerNextCreateAndress() |
||
| 34 | { |
||
| 35 | $this->Loja = new LojaController; |
||
| 36 | |||
| 37 | $data = array( |
||
| 38 | 'nome1' => 'reginaldo', |
||
| 39 | 'nome2' => 'luis', |
||
| 40 | 'email' => '[email protected]', |
||
| 41 | 'documento1' => '123.345.566-89', |
||
| 42 | 'data_de_nascimento' => '1995-03-10', |
||
| 43 | 'ativo' => 1, |
||
| 44 | 'id_usuario' => 23, |
||
| 45 | 'senha' => 'senha123' |
||
| 46 | ); |
||
| 47 | |||
| 48 | $result = $this->Loja->saveClientFromEcommerce($data); |
||
| 49 | |||
| 50 | $data = array( |
||
| 51 | 'id_usuario' => 23, |
||
| 52 | 'id_cliente' => $result, |
||
| 53 | 'ativo' => 1, |
||
| 54 | 'cep' => '07252-000', |
||
| 55 | 'endereco' => 'Avenida do Contorno', |
||
| 56 | 'numero' => '19b', |
||
| 57 | 'bairro' => 'Nova Cidade', |
||
| 58 | 'cidade' => 'Guarulhos', |
||
| 59 | 'uf' => 'SP' |
||
| 60 | ); |
||
| 61 | |||
| 62 | $result = $this->Loja->saveAndressClientFromEcommerce($data); |
||
| 63 | |||
| 64 | $this->assertEquals(is_array($result), true); |
||
| 65 | } |
||
| 66 | } |