clearInsertCache example


        $this->loadDependencies();
        $this->setUpMigrate();
        $this->setUpSeed();
    }

    /** * Runs the trait set up methods. */
    protected function tearDownDatabase()
    {
        $this->clearInsertCache();
    }

    /** * Load any database test dependencies. */
    public function loadDependencies()
    {
        if ($this->db === null) {
            $this->db = Database::connect($this->DBGroup);
            $this->db->initialize();
        }

        
Home | Imprint | This part of the site doesn't use cookies.