@@ -34,7 +34,6 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3434#include < gtest/gtest.h>
3535
3636#include " lib_csp_tes_test.h"
37- #include " vs_google_test_explorer_namespace.h"
3837#include " csp_common_test.h"
3938
4039using namespace csp_common ;
@@ -45,7 +44,7 @@ const double kErrorToHi = 0.01; // 1.0%
4544// === Using factory patterns to create the different physical and non-physical components=========
4645
4746// Test draining storage tank
48- NAMESPACE_TEST (csp_common, StorageTank, DrainingTank)
47+ TEST ( StorageTank, DrainingTank)
4948{
5049 bool is_hot_tank = false ;
5150 double dt = 3600 .;
@@ -75,7 +74,7 @@ NAMESPACE_TEST(csp_common, StorageTank, DrainingTank)
7574}
7675
7776// Test an initially drained storage tank
78- NAMESPACE_TEST (csp_common, StorageTank, InitiallyDrainedTank)
77+ TEST ( StorageTank, InitiallyDrainedTank)
7978{
8079 bool is_hot_tank = false ;
8180 double dt = 3600 .;
@@ -188,7 +187,7 @@ double C_to_K(double T) {
188187 return T + 273.15 ;
189188}
190189
191- NAMESPACE_TEST (csp_common, TesCspSolver, Default)
190+ TEST ( TesCspSolver, Default)
192191{
193192 std::vector<double > tes_lengths{ 0 , 90 , 100 , 120 , 0 , 0 , 0 , 0 , 80 , 120 , 80 };
194193
@@ -321,7 +320,7 @@ NAMESPACE_TEST(csp_common, TesCspSolver, Default)
321320 EXPECT_NEAR (tes.get_cold_temp (), 566.1 , 0.1 );
322321}
323322
324- NAMESPACE_TEST (csp_common, TesSubcomponentCmod, Default)
323+ TEST ( TesSubcomponentCmod, Default)
325324{
326325 const size_t n_steps = 24 ;
327326 ssc_data_t inputs = ssc_data_create ();
0 commit comments