Initial commit for v5, but this time with the right line endings

Signed-off-by: Ian bell <ian.h.bell@gmail.com>
This commit is contained in:
Ian bell
2014-05-14 12:46:24 +02:00
commit b3847c7522
686 changed files with 122320 additions and 0 deletions

View File

@@ -0,0 +1,48 @@
// ############################################
// TESTS
// ############################################
#if defined(ENABLE_CATCH)
#include "../Catch/catch.hpp"
TEST_CASE("State Class Instantiation","")
{
SECTION("Bad Fluid")
{
}
SECTION("Pure Fluid")
{
}
SECTION("Pseudo-Pure Fluid")
{
}
SECTION("Mixture")
{
}
SECTION("Brine from Melinder")
{
}
SECTION("Incompressible Liquid")
{
}
SECTION("REFPROP Pure Fluid")
{
}
SECTION("REFPROP Pseudo-Pure Fluid")
{
}
SECTION("REFPROP Mixture")
{
}
SECTION("Component names and fractions not the same length")
{
}
SECTION("Component names and fractions ARE the same length")
{
}
}
#endif