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