We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6094caa commit b4a4189Copy full SHA for b4a4189
1 file changed
tests/systems/systems_test.C
@@ -445,6 +445,8 @@ public:
445
446
CPPUNIT_TEST( test100KVariables );
447
448
+ CPPUNIT_TEST( testUninitializedInfo );
449
+
450
CPPUNIT_TEST( testPostInitAddVector );
451
CPPUNIT_TEST( testAddVectorProjChange );
452
CPPUNIT_TEST( testAddVectorTypeChange );
@@ -621,6 +623,17 @@ public:
621
623
CPPUNIT_ASSERT_EQUAL(sys.get_dof_map().n_dofs(888), dof_id_type(5));
622
624
}
625
626
+ void testUninitializedInfo()
627
+ {
628
+ Mesh mesh(*TestCommWorld);
629
+ EquationSystems es(mesh);
630
+ ExplicitSystem & sys = simpleSetup(mesh, es);
631
632
+ auto info = sys.get_info();
633
634
+ CPPUNIT_ASSERT (info.find("uninitialized") != std::string::npos);
635
+ }
636
637
638
void testPostInitAddVector()
639
{
0 commit comments