示例#1
0
def test_get_stream_table_contents():
    m = ConcreteModel()
    m.b = ProcessBaseBlock()
    assert m.b._get_stream_table_contents(time_point=0) is None
示例#2
0
def test_report():
    # Test that no exceptions occur
    m = ConcreteModel()
    m.b = ProcessBaseBlock()
    m.b.report(dof=True)
示例#3
0
def test_get_performance_contents():
    m = ConcreteModel()
    m.b = ProcessBaseBlock()
    assert m.b._get_performance_contents(time_point=0) is None