SproutCMS

This is the code documentation for the SproutCMS project

class navigationTest

Extending this class

<?php
/**
* New class description goes here
* 
* @author Your Name, 2026-09-16
**/
class NewClassName extends navigationTest {
    
    /**
    * Put the prefixes back
    **/
    public function tearDownAfterClass () {
        // Method code goes here
    }
    
    /**
    * Admin loading should bring in all pages, including inactive and unpublished
    **/
    public function testLoadPageTree__Admin () {
        // Method code goes here
    }
    
    /**
    * Front-end loading should not bring in inactive pages
    **/
    public function testLoadPageTree__FrontEnd () {
        // Method code goes here
    }
    
    public function dataCustomBreadcrumb () {
        // Method code goes here
    }
    
    public function testCustomBreadcrumb ($crumbs, $expected) {
        // Method code goes here
    }
    
    /**
    * Quick and dirty check that the INSERTs above actually worked
    **/
    public function testDatabaseSetupWorked () {
        // Method code goes here
    }
    
    /**
    * Duplicate pages tables and then inject some fake data
    **/
    public function setUpBeforeClass () {
        // Method code goes here
    }
    
}
?>