diff --git a/armi/nucDirectory/tests/test_elements.py b/armi/nucDirectory/tests/test_elements.py index 910f3ff10..26e3156bd 100644 --- a/armi/nucDirectory/tests/test_elements.py +++ b/armi/nucDirectory/tests/test_elements.py @@ -102,6 +102,10 @@ def test_element_isNaturallyOccurring(self): Uses RIPL definitions of naturally occurring. Protactinium is debated as naturally occurring. Yeah it exists as a U235 decay product but it's kind of pseudo-natural. + + .. test:: Get elements by Z, to show if they are naturally occurring. + :id: I_ARMI_ND_ELEMENTS3 + :tests: R_ARMI_ND_ELEMENTS """ for ee in elements.byZ.values(): if ee.z == 43 or ee.z == 61 or 84 <= ee.z <= 89 or ee.z >= 93: @@ -122,6 +126,12 @@ def test_abundancesAddToOne(self): ) def test_isHeavyMetal(self): + """Get elements by Z. + + .. test:: Get elements by Z, to show if they are heavy metals. + :id: I_ARMI_ND_ELEMENTS4 + :tests: R_ARMI_ND_ELEMENTS + """ for ee in elements.byZ.values(): if ee.z > 89: self.assertTrue(ee.isHeavyMetal()) diff --git a/armi/nucDirectory/tests/test_nuclideBases.py b/armi/nucDirectory/tests/test_nuclideBases.py index 47495788a..08be9ed1e 100644 --- a/armi/nucDirectory/tests/test_nuclideBases.py +++ b/armi/nucDirectory/tests/test_nuclideBases.py @@ -193,7 +193,7 @@ def test_nucBases_imposeBurnChainTransmutationBulkStatistics(self): def test_nucBases_imposeBurn_nuSF(self): """Test the natural abundance values. - .. test:: Test the natural abundance that was read from file instead of code. + .. test:: Test that nuclide data was read from file instead of code. :id: I_ARMI_ND_DATA0 :tests: R_ARMI_ND_DATA """