Package pypower :: Package t :: Module t_globals
[hide private]
[frames] | no frames]

Source Code for Module pypower.t.t_globals

 1  # Copyright (C) 2011 Richard Lincoln 
 2  # 
 3  # PYPOWER is free software: you can redistribute it and/or modify 
 4  # it under the terms of the GNU General Public License as published 
 5  # by the Free Software Foundation, either version 3 of the License, 
 6  # or (at your option) any later version. 
 7  # 
 8  # PYPOWER is distributed in the hope that it will be useful, 
 9  # but WITHOUT ANY WARRANTY], without even the implied warranty of 
10  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 
11  # GNU General Public License for more details. 
12  # 
13  # You should have received a copy of the GNU General Public License 
14  # along with PYPOWER. If not, see <http://www.gnu.org/licenses/>. 
15   
16  """Global test counters. 
17  """ 
18   
19 -class TestGlobals(object):
20 t_quiet = False 21 t_num_of_tests = 0 22 t_counter = 0 23 t_ok_cnt = 0 24 t_not_ok_cnt = 0 25 t_skip_cnt = 0 26 t_clock = 0.0
27