Skip to content
4 changes: 4 additions & 0 deletions source/module_cell/test/unitcell_test_setupcell.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ class UcellTest : public ::testing::Test
protected:
std::unique_ptr<UnitCell> ucell{new UnitCell};
std::string output;
void SetUp()
{
ucell->lmaxmax = 2;
}
};

using UcellDeathTest = UcellTest;
Expand Down
4 changes: 4 additions & 0 deletions source/module_cell/test_pw/unitcell_test_pw.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ class UcellTest : public ::testing::Test
protected:
std::unique_ptr<UnitCell> ucell{new UnitCell};
std::string output;
void SetUp()
{
ucell->lmaxmax = 2;
}
};

TEST_F(UcellTest,ReadAtomSpecies)
Expand Down