Ñò
3Nc        	   @   s  d  Z  d Z d Z d d k Z d d k Z d d k Z d d k Z d d k Z d d k l	 Z	 d e
 f d „  ƒ  YZ e e i ƒ Z e e i ƒ Z d e
 f d	 „  ƒ  YZ e i Z d
 e f d „  ƒ  YZ d e f d „  ƒ  YZ d e i f d „  ƒ  YZ e Z e d j o e d e ƒ n d S(   sí	  
A TestRunner for use with the Python unit testing framework. It
generates a HTML report to show the result at a glance.

The simplest way to use this is to invoke its main method. E.g.

    import unittest
    import HTMLTestRunner

    ... define your tests ...

    if __name__ == '__main__':
        HTMLTestRunner.main()


For more customization options, instantiates a HTMLTestRunner object.
HTMLTestRunner is a counterpart to unittest's TextTestRunner. E.g.

    # output to a file
    fp = file('my_report.html', 'wb')
    runner = HTMLTestRunner.HTMLTestRunner(
                stream=fp,
                title='My unit test',
                description='This demonstrates the report output by HTMLTestRunner.'
                )

    # Use an external stylesheet.
    # See the Template_mixin class for more customizable options
    runner.STYLESHEET_TMPL = '<link rel="stylesheet" href="my_stylesheet.css" type="text/css">'

    # run the test
    runner.run(my_test_suite)


------------------------------------------------------------------------
Copyright (c) 2004-2007, Wai Yip Tung
All rights reserved.

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:

* Redistributions of source code must retain the above copyright notice,
  this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
  notice, this list of conditions and the following disclaimer in the
  documentation and/or other materials provided with the distribution.
* Neither the name Wai Yip Tung nor the names of its contributors may be
  used to endorse or promote products derived from this software without
  specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
s   Wai Yip Tungs   0.8.2iÿÿÿÿN(   t   saxutilst   OutputRedirectorc           B   s2   e  Z d  Z d „  Z d „  Z d „  Z d „  Z RS(   s&    Wrapper to redirect stdout or stderr c         C   s   | |  _  d  S(   N(   t   fp(   t   selfR   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyt   __init__r   s    c         C   s   |  i  i | ƒ d  S(   N(   R   t   write(   R   t   s(    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR   u   s    c         C   s   |  i  i | ƒ d  S(   N(   R   t
   writelines(   R   t   lines(    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR   x   s    c         C   s   |  i  i ƒ  d  S(   N(   R   t   flush(   R   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR	   {   s    (   t   __name__t
   __module__t   __doc__R   R   R   R	   (    (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR   p   s
   			t   Template_mixinc           B   sq   e  Z d  Z h d d 6d d 6d d 6Z d Z d Z d	 Z d
 Z d Z d Z	 d Z
 d Z d Z d Z d Z d Z RS(   s?  
    Define a HTML template for report customerization and generation.

    Overall structure of an HTML report

    HTML
    +------------------------+
    |<html>                  |
    |  <head>                |
    |                        |
    |   STYLESHEET           |
    |   +----------------+   |
    |   |                |   |
    |   +----------------+   |
    |                        |
    |  </head>               |
    |                        |
    |  <body>                |
    |                        |
    |   HEADING              |
    |   +----------------+   |
    |   |                |   |
    |   +----------------+   |
    |                        |
    |   REPORT               |
    |   +----------------+   |
    |   |                |   |
    |   +----------------+   |
    |                        |
    |   ENDING               |
    |   +----------------+   |
    |   |                |   |
    |   +----------------+   |
    |                        |
    |  </body>               |
    |</html>                 |
    +------------------------+
    t   passi    t   faili   t   errori   s   Unit Test Reportt    s  <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>%(title)s</title>
    <meta name="generator" content="%(generator)s"/>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    %(stylesheet)s
</head>
<body>
<script language="javascript" type="text/javascript"><!--
output_list = Array();

/* level - 0:Summary; 1:Failed; 2:All */
function showCase(level) {
    trs = document.getElementsByTagName("tr");
    for (var i = 0; i < trs.length; i++) {
        tr = trs[i];
        id = tr.id;
        if (id.substr(0,2) == 'ft') {
            if (level < 1) {
                tr.className = 'hiddenRow';
            }
            else {
                tr.className = '';
            }
        }
        if (id.substr(0,2) == 'pt') {
            if (level > 1) {
                tr.className = '';
            }
            else {
                tr.className = 'hiddenRow';
            }
        }
    }
}


function showClassDetail(cid, count) {
    var id_list = Array(count);
    var toHide = 1;
    for (var i = 0; i < count; i++) {
        tid0 = 't' + cid.substr(1) + '.' + (i+1);
        tid = 'f' + tid0;
        tr = document.getElementById(tid);
        if (!tr) {
            tid = 'p' + tid0;
            tr = document.getElementById(tid);
        }
        id_list[i] = tid;
        if (tr.className) {
            toHide = 0;
        }
    }
    for (var i = 0; i < count; i++) {
        tid = id_list[i];
        if (toHide) {
            document.getElementById('div_'+tid).style.display = 'none'
            document.getElementById(tid).className = 'hiddenRow';
        }
        else {
            document.getElementById(tid).className = '';
        }
    }
}


function showTestDetail(div_id){
    var details_div = document.getElementById(div_id)
    var displayState = details_div.style.display
    // alert(displayState)
    if (displayState != 'block' ) {
        displayState = 'block'
        details_div.style.display = 'block'
    }
    else {
        details_div.style.display = 'none'
    }
}


function html_escape(s) {
    s = s.replace(/&/g,'&amp;');
    s = s.replace(/</g,'&lt;');
    s = s.replace(/>/g,'&gt;');
    return s;
}

/* obsoleted by detail in <div>
function showOutput(id, name) {
    var w = window.open("", //url
                    name,
                    "resizable,scrollbars,status,width=800,height=450");
    d = w.document;
    d.write("<pre>");
    d.write(html_escape(output_list[id]));
    d.write("\n");
    d.write("<a href='javascript:window.close()'>close</a>\n");
    d.write("</pre>\n");
    d.close();
}
*/
--></script>

%(heading)s
%(report)s
%(ending)s

</body>
</html>
s  
<style type="text/css" media="screen">
body        { font-family: verdana, arial, helvetica, sans-serif; font-size: 80%; }
table       { font-size: 100%; }
pre         { }

/* -- heading ---------------------------------------------------------------------- */
h1 {
	font-size: 16pt;
	color: gray;
}
.heading {
    margin-top: 0ex;
    margin-bottom: 1ex;
}

.heading .attribute {
    margin-top: 1ex;
    margin-bottom: 0;
}

.heading .description {
    margin-top: 4ex;
    margin-bottom: 6ex;
}

/* -- css div popup ------------------------------------------------------------------------ */
a.popup_link {
}

a.popup_link:hover {
    color: red;
}

.popup_window {
    display: none;
    position: relative;
    left: 0px;
    top: 0px;
    /*border: solid #627173 1px; */
    padding: 10px;
    background-color: #E6E6D6;
    font-family: "Lucida Console", "Courier New", Courier, monospace;
    text-align: left;
    font-size: 8pt;
    width: 500px;
}

}
/* -- report ------------------------------------------------------------------------ */
#show_detail_line {
    margin-top: 3ex;
    margin-bottom: 1ex;
}
#result_table {
    width: 80%;
    border-collapse: collapse;
    border: 1px solid #777;
}
#header_row {
    font-weight: bold;
    color: white;
    background-color: #777;
}
#result_table td {
    border: 1px solid #777;
    padding: 2px;
}
#total_row  { font-weight: bold; }
.passClass  { background-color: #6c6; }
.failClass  { background-color: #c60; }
.errorClass { background-color: #c00; }
.passCase   { color: #6c6; }
.failCase   { color: #c60; font-weight: bold; }
.errorCase  { color: #c00; font-weight: bold; }
.hiddenRow  { display: none; }
.testcase   { margin-left: 2em; }


/* -- ending ---------------------------------------------------------------------- */
#ending {
}

</style>
sk   <div class='heading'>
<h1>%(title)s</h1>
%(parameters)s
<p class='description'>%(description)s</p>
</div>

s>   <p class='attribute'><strong>%(name)s:</strong> %(value)s</p>
s¥  
<p id='show_detail_line'>Show
<a href='javascript:showCase(0)'>Summary</a>
<a href='javascript:showCase(1)'>Failed</a>
<a href='javascript:showCase(2)'>All</a>
</p>
<table id='result_table'>
<colgroup>
<col align='left' />
<col align='right' />
<col align='right' />
<col align='right' />
<col align='right' />
<col align='right' />
</colgroup>
<tr id='header_row'>
    <td>Test Group/Test case</td>
    <td>Count</td>
    <td>Pass</td>
    <td>Fail</td>
    <td>Error</td>
    <td>View</td>
</tr>
%(test_list)s
<tr id='total_row'>
    <td>Total</td>
    <td>%(count)s</td>
    <td>%(Pass)s</td>
    <td>%(fail)s</td>
    <td>%(error)s</td>
    <td>&nbsp;</td>
</tr>
</table>
sà   
<tr class='%(style)s'>
    <td>%(desc)s</td>
    <td>%(count)s</td>
    <td>%(Pass)s</td>
    <td>%(fail)s</td>
    <td>%(error)s</td>
    <td><a href="javascript:showClassDetail('%(cid)s',%(count)s)">Detail</a></td>
</tr>
s’  
<tr id='%(tid)s' class='%(Class)s'>
    <td class='%(style)s'><div class='testcase'>%(desc)s</div></td>
    <td colspan='5' align='center'>

    <!--css div popup start-->
    <a class="popup_link" onfocus='this.blur();' href="javascript:showTestDetail('div_%(tid)s')" >
        %(status)s</a>

    <div id='div_%(tid)s' class="popup_window">
        <div style='text-align: right; color:red;cursor:pointer'>
        <a onfocus='this.blur();' onclick="document.getElementById('div_%(tid)s').style.display = 'none' " >
           [x]</a>
        </div>
        <pre>
        %(script)s
        </pre>
    </div>
    <!--css div popup end-->

    </td>
</tr>
s¢   
<tr id='%(tid)s' class='%(Class)s'>
    <td class='%(style)s'><div class='testcase'>%(desc)s</div></td>
    <td colspan='5' align='center'>%(status)s</td>
</tr>
s   
%(id)s: %(output)s
s   <div id='ending'>&nbsp;</div>(   R
   R   R   t   STATUSt   DEFAULT_TITLEt   DEFAULT_DESCRIPTIONt	   HTML_TMPLt   STYLESHEET_TMPLt   HEADING_TMPLt   HEADING_ATTRIBUTE_TMPLt   REPORT_TMPLt   REPORT_CLASS_TMPLt   REPORT_TEST_WITH_OUTPUT_TMPLt   REPORT_TEST_NO_OUTPUT_TMPLt   REPORT_TEST_OUTPUT_TMPLt   ENDING_TMPL(    (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR   †   s"   &
t^)t   _TestResultc           B   sJ   e  Z d  d „ Z d „  Z d „  Z d „  Z d „  Z d „  Z d „  Z RS(   i   c         C   sP   t  i |  ƒ d  |  _ d  |  _ d |  _ d |  _ d |  _ | |  _ g  |  _	 d  S(   Ni    (
   t
   TestResultR   t   Nonet   stdout0t   stderr0t   success_countt   failure_countt   error_countt	   verbosityt   result(   R   R'   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR     s    							c         C   se   t  i |  | ƒ t i ƒ  |  _ |  i t _ |  i t _ t i |  _	 t i
 |  _ t t _ t t _
 d  S(   N(   R    t	   startTestt   StringIOt   outputBuffert   stdout_redirectorR   t   stderr_redirectort   syst   stdoutR"   t   stderrR#   (   R   t   test(    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR)     s    	c         C   sE   |  i  o. |  i  t _ |  i t _ d |  _  d |  _ n |  i i ƒ  S(   sg   
        Disconnect output redirection and return buffer.
        Safe to call multiple times.
        N(   R"   R.   R/   R#   R0   R!   R+   t   getvalue(   R   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyt   complete_output$  s    
	c         C   s   |  i  ƒ  d  S(   N(   R3   (   R   R1   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyt   stopTest1  s    c         C   s¥   |  i  d 7_  t i |  | ƒ |  i ƒ  } |  i i d | | d f ƒ |  i d j o: t i i	 d ƒ t i i	 t
 | ƒ ƒ t i i	 d ƒ n t i i	 d ƒ d  S(   Ni   i    R   s   ok s   
t   .(   R$   R    t
   addSuccessR3   R(   t   appendR'   R.   R0   R   t   str(   R   R1   t   output(    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR6   8  s    c         C   s»   |  i  d 7_  t i |  | | ƒ |  i d \ } } |  i ƒ  } |  i i d | | | f ƒ |  i d j o: t i	 i
 d ƒ t i	 i
 t | ƒ ƒ t i	 i
 d ƒ n t i	 i
 d ƒ d  S(   Ni   iÿÿÿÿi   s   E  s   
t   E(   R&   R    t   addErrort   errorsR3   R(   R7   R'   R.   R0   R   R8   (   R   R1   t   errt   _t   _exc_strR9   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR;   D  s    c         C   s»   |  i  d 7_  t i |  | | ƒ |  i d \ } } |  i ƒ  } |  i i d | | | f ƒ |  i d j o: t i	 i
 d ƒ t i	 i
 t | ƒ ƒ t i	 i
 d ƒ n t i	 i
 d ƒ d  S(   Ni   iÿÿÿÿs   F  s   
t   F(   R%   R    t
   addFailuret   failuresR3   R(   R7   R'   R.   R0   R   R8   (   R   R1   R=   R>   R?   R9   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyRA   Q  s    (	   R
   R   R   R)   R3   R4   R6   R;   RA   (    (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR     s   					t   HTMLTestRunnerc           B   sw   e  Z d  Z e i d d d d „ Z d „  Z d „  Z d „  Z	 d „  Z
 d „  Z d „  Z d	 „  Z d
 „  Z d „  Z RS(   s   
    i   c         C   st   | |  _  | |  _ | d  j o |  i |  _ n
 | |  _ | d  j o |  i |  _ n
 | |  _ t i i ƒ  |  _	 d  S(   N(
   t   streamR'   R!   R   t   titleR   t   descriptiont   datetimet   nowt	   startTime(   R   RD   R'   RE   RF   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR   b  s    				c         C   sZ   t  |  i ƒ } | | ƒ t i i ƒ  |  _ |  i | | ƒ t i d |  i |  i IJ| S(   s&   Run the given test case or test suite.s   
Time Elapsed: %s(	   R   R'   RG   RH   t   stopTimet   generateReportR.   R0   RI   (   R   R1   R(   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyt   runq  s    
c         C   s©   h  } g  } xk | D]c \ } } } } | i  } | i | ƒ p g  | | <| i | ƒ n | | i | | | | f ƒ q Wg  }	 | D] } |	 | | | f q… ~	 }
 |
 S(   N(   t	   __class__t   has_keyR7   (   R   t   result_listt   rmapt   classest   nt   tt   ot   et   clst   _[1]t   r(    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyt
   sortResult{  s     	
!+c         C   sÔ   t  |  i ƒ d  } t  |  i |  i ƒ } g  } | i o | i d | i ƒ n | i o | i d | i ƒ n | i o | i d | i ƒ n | o d i | ƒ } n d } d | f d | f d	 | f g S(
   sv   
        Return report attributes as a list of (name, value).
        Override this to add custom attributes.
        i   s   Pass %ss
   Failure %ss   Error %st    t   nones
   Start Timet   Durationt   Status(   R8   RI   RJ   R$   R7   R%   R&   t   join(   R   R(   RI   t   durationt   status(    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyt   getReportAttributesŠ  s    
 
 
 		c   
      C   s¬   |  i  | ƒ } d t } |  i ƒ  } |  i | ƒ } |  i | ƒ } |  i ƒ  } |  i t d t i	 |  i
 ƒ d | d | d | d | d | ƒ }	 |  i i |	 i d ƒ ƒ d  S(	   Ns   HTMLTestRunner %sRE   t	   generatort
   stylesheett   headingt   reportt   endingt   utf8(   Ra   t   __version__t   _generate_stylesheett   _generate_headingt   _generate_reportt   _generate_endingR   t   dictR    t   escapeRE   RD   R   t   encode(
   R   R1   R(   t   report_attrsRb   Rc   Rd   Re   Rf   R9   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyRK      s    

c         C   s   |  i  S(   N(   R   (   R   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyRi   ²  s    c         C   sŸ   g  } xO | D]G \ } } |  i  t d t i | ƒ d t i | ƒ ƒ } | i | ƒ q W|  i t d t i |  i ƒ d d i | ƒ d t i |  i ƒ ƒ } | S(   Nt   namet   valueRE   t
   parametersR   RF   (	   R   Rm   R    Rn   R7   R   RE   R^   RF   (   R   Rp   t   a_linesRq   Rr   t   lineRd   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyRj   ¶  s     c         C   sR  g  } |  i  | i ƒ } xÊt | ƒ D]¼\ } \ } } d } } }	 xZ | D]R \ }
 } } } |
 d j o | d 7} qL |
 d j o | d 7} qL |	 d 7}	 qL W| i d j o | i } n d | i | i f } | i o | i i d ƒ d p d } | o d | | f p | } |  i t d |	 d j o d	 p | d j o d
 p d d | d | | |	 d | d | d |	 d d | d ƒ } | i	 | ƒ xE t | ƒ D]7 \ } \ }
 } } } |  i
 | | | |
 | | | ƒ q¦Wq% W|  i t d d i | ƒ d t | i | i | i ƒ d t | i ƒ d t | i ƒ d t | i ƒ ƒ } | S(   Ni    i   t   __main__s   %s.%ss   
R   s   %s: %st   stylet
   errorClasst	   failClasst	   passClasst   desct   countt   PassR   R   t   cids   c%st	   test_list(   RY   R(   t	   enumerateR   R
   R   t   splitR   Rm   R7   t   _generate_report_testR   R^   R8   R$   R%   R&   (   R   R(   t   rowst   sortedResultR~   RV   t   cls_resultst   npt   nft   neRR   RS   RT   RU   Rq   t   docR{   t   rowt   tidRe   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyRk   Æ  sH        '. 'c         C   s³  t  | p | ƒ } | d j o d p d d | d | d f } | i ƒ  i d ƒ d }	 | i ƒ  p d }
 |
 o d	 |	 |
 f p |	 } | o
 |  i p |  i } t | t ƒ o | i d
 ƒ } n | } t | t ƒ o | i d
 ƒ } n | } |  i	 t
 d | d t i | | ƒ ƒ } | t
 d | d | d j o d p d d | d j o d p | d j o d p d d | d | d |  i | ƒ } | i | ƒ | p d  Sd  S(   Ni    t   pt   fs   t%s.%si   R5   iÿÿÿÿR   s   %s: %ss   latin-1t   idR9   R‹   t   Classt	   hiddenRowR[   Rw   i   t	   errorCaset   failCaseR{   t   scriptR`   (   t   boolRŽ   R   t   shortDescriptionR   R   t
   isinstanceR8   t   decodeR   Rm   R    Rn   R   R7   (   R   Rƒ   R~   R‹   RR   RS   RT   RU   t
   has_outputRq   R‰   R{   t   tmplt   uot   ueR“   RŠ   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyR‚   ñ  s2    0	.c         C   s   |  i  S(   N(   R   (   R   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyRl     s    N(   R
   R   R   R.   R/   R!   R   RL   RY   Ra   RK   Ri   Rj   Rk   R‚   Rl   (    (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyRC   _  s   	
						+	(t   TestProgramc           B   s   e  Z d  Z d „  Z RS(   sr   
    A variation of the unittest.TestProgram. Please refer to the base
    class for command line parameters.
    c         C   s=   |  i  d  j o t d |  i ƒ |  _  n t i i |  ƒ d  S(   NR'   (   t
   testRunnerR!   RC   R'   t   unittestRœ   t   runTests(   R   (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyRŸ   )  s    (   R
   R   R   RŸ   (    (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyRœ   $  s   Rv   t   module(   R   t
   __author__Rh   RG   R*   R.   t   timeRž   t   xml.saxR    t   objectR   R/   R,   R0   R-   R   R    R   RC   Rœ   t   mainR
   R!   (    (    (    sB   /afs/sipb.mit.edu/project/bazki/Checkout/lib/ext/HTMLTestRunner.pyt   <module>?   s(   ÿ z	^Å