Initial commit of toolkit SWIG wrapper work
This commit is contained in:
49
tools/epanet-toolkit/test/epanet_toolkit_test.py
Normal file
49
tools/epanet-toolkit/test/epanet_toolkit_test.py
Normal file
@@ -0,0 +1,49 @@
|
||||
# -*- 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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user