Go to the source code of this file.
◆ TEST_F() [1/3]
Definition at line 34 of file xAODJetCollectorTest.cxx.
37 constexpr std::size_t njets{11};
38 std::vector<xAOD::Jet> xaodjets (njets);
41 for(
unsigned int ijet = 0; ijet < njets; ++ijet){
48 EXPECT_FALSE(collector.
empty());
49 EXPECT_FALSE((collector.
xAODJets()).size() == 10);
◆ TEST_F() [2/3]
Definition at line 53 of file xAODJetCollectorTest.cxx.
56 unsigned int njets{11};
59 for(
unsigned int ijet = 0; ijet < njets; ++ijet){
68 EXPECT_FALSE(collector.
empty());
69 EXPECT_TRUE(collector.
size() == njets);
70 EXPECT_TRUE((collector.
hypoJets()).size() == njets);
71 EXPECT_TRUE((collector.
xAODJets()).size() == 0);
◆ TEST_F() [3/3]