PHP code example of codeception / doctrine1module

1. Go to this page and download the library: Download codeception/doctrine1module library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

codeception / doctrine1module example snippets

 php

$I->dontSeeInTable('User', array('name' => 'Davert', 'email' => '[email protected]'));

 php

$mail = $I->grabFromTable('User', 'email', array('name' => 'Davert'));

 php

$I->seeInTable('User', array('name' => 'Davert', 'email' => '[email protected]'));