Adding header info

This commit is contained in:
Michael Tryby
2019-04-01 15:16:58 -04:00
parent 23ac179ec1
commit b9f00421dd
3 changed files with 39 additions and 17 deletions

View File

@@ -1,4 +1,15 @@
/*
******************************************************************************
Project: OWA EPANET
Version: 2.2
Module: util/test_filemanager.cpp
Description: Tests filemanager
Authors: see AUTHORS
Copyright: see AUTHORS
License: see LICENSE
Last Updated: 04/01/2019
******************************************************************************
*/
#define BOOST_TEST_MODULE filemanager
@@ -12,6 +23,7 @@
BOOST_AUTO_TEST_SUITE(test_filemanager)
BOOST_AUTO_TEST_CASE (test_create_destroy)
{
file_handle_t *file_handle = NULL;
@@ -55,12 +67,5 @@ struct Fixture{
file_handle_t *file_handle;
};
BOOST_FIXTURE_TEST_CASE(test_get_file, Fixture)
{
FILE *file;
//file = get_file(file_handle);
//BOOST_CHECK(file != NULL);
}
BOOST_AUTO_TEST_SUITE_END()