Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[test] add missing headers
Browse files Browse the repository at this point in the history
ferdymercury authored Jan 30, 2025
1 parent 19c8e88 commit bb9a5ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hist/hist/test/test_TH1.cxx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#include "gtest/gtest.h"

#include "TH1.h"
#include "TH2.h"
#include "TH3.h"
#include "TH1F.h"
#include "THLimitsFinder.h"

@@ -89,4 +91,4 @@ TEST(TH1, AddBinContent)
TH3F h3("h3", "h3", 5, 0, 1, 2, 0, 2, 2, 0, 3);;
h3.AddBinContent(1,1,1,1.);
EXPECT_FLOAT_EQ(h3.GetBinContent(1,1,1),1.);
}
}

0 comments on commit bb9a5ec

Please sign in to comment.