function test_thematic_archiveloop()
 {
     $this->expectOutputRegex('/<article id="post/', thematic_archiveloop());
 }
		
		    <?php 
thematic_abovecontent();
?>
		
		    <div id="content">
		
		        <?php 
the_post();
// displays the page title
thematic_page_title();
rewind_posts();
// create the navigation above the content
thematic_navigation_above();
// action hook creating the archive loop
thematic_archiveloop();
// create the navigation below the content
thematic_navigation_below();
?>
		
		    </div><!-- #content -->
		    
		    <?php 
thematic_belowcontent();
?>
 
		    
		</div><!-- #container -->

<?php 
// action hook for placing content below #container
 function test_thematic_archiveloop_xhtml()
 {
     $this->expectOutputRegex('/<div id="post/', thematic_archiveloop());
 }