49 lines
736 B
Python
49 lines
736 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
#
|
|
# epanet_toolkit_test.py - Unit tests for epanet toolkit API
|
|
#
|
|
# Created: Dec. 4, 2017
|
|
# Author: Michael E. Tryby
|
|
# US EPA - ORD/NRMRL
|
|
#
|
|
|
|
from unittest import TestCase
|
|
import inspect
|
|
|
|
import epanet_toolkit as ent
|
|
|
|
|
|
class TestToolkitMethods(TestCase):
|
|
|
|
def test_alloc(self):
|
|
pass
|
|
|
|
def test_free(self):
|
|
pass
|
|
|
|
def test_open(self):
|
|
pass
|
|
|
|
def test_close(self):
|
|
pass
|
|
|
|
|
|
class TestToolkit(TestCase):
|
|
|
|
def setUp(self):
|
|
pass
|
|
|
|
def tearDown(self):
|
|
pass
|
|
|
|
def test_solveH(self):
|
|
pass
|
|
|
|
def test_solveQ(self):
|
|
pass
|
|
|
|
def test_report(self):
|
|
pass
|
|
|
|
|