1111using namespace ROOT ;
1212using namespace ROOT ::RDF;
1313
14- auto fileName0 = " TRootTDS_input_0 .root" ;
15- auto fileName1 = " TRootTDS_input_1 .root" ;
16- auto fileName2 = " TRootTDS_input_2 .root" ;
17- auto fileGlob = " TRootTDS_input_ *.root" ;
14+ auto fileName0 = " RRootDS_input_0 .root" ;
15+ auto fileName1 = " RRootDS_input_1 .root" ;
16+ auto fileName2 = " RRootDS_input_2 .root" ;
17+ auto fileGlob = " RRootDS_input_ *.root" ;
1818auto treeName = " t" ;
1919
2020TEST (RRootDS, GenerateData)
@@ -51,7 +51,7 @@ TEST(RRootDS, ColTypeNames)
5151 EXPECT_STREQ (" TGraph" , tds.GetTypeName (" g" ).c_str ());
5252}
5353
54- TEST (TRootTDS , EntryRanges)
54+ TEST (RRootDS , EntryRanges)
5555{
5656 ROOT::Internal::RDF::RRootDS tds (treeName, fileGlob);
5757 tds.SetNSlots (3U );
@@ -69,7 +69,7 @@ TEST(TRootTDS, EntryRanges)
6969 EXPECT_EQ (30U , ranges[2 ].second );
7070}
7171
72- TEST (TRootTDS , ColumnReaders)
72+ TEST (RRootDS , ColumnReaders)
7373{
7474 ROOT::Internal::RDF::RRootDS tds (treeName, fileGlob);
7575 const auto nSlots = 3U ;
@@ -89,7 +89,7 @@ TEST(TRootTDS, ColumnReaders)
8989 }
9090}
9191
92- TEST (TRootTDS , ColumnReadersWrongType)
92+ TEST (RRootDS , ColumnReadersWrongType)
9393{
9494 ROOT::Internal::RDF::RRootDS tds (treeName, fileGlob);
9595 const auto nSlots = 3U ;
@@ -106,7 +106,7 @@ TEST(TRootTDS, ColumnReadersWrongType)
106106
107107#ifndef NDEBUG
108108
109- TEST (TRootTDS , SetNSlotsTwice)
109+ TEST (RRootDS , SetNSlotsTwice)
110110{
111111 auto theTest = []() {
112112 ROOT::Internal::RDF::RRootDS tds (treeName, fileGlob);
@@ -117,7 +117,7 @@ TEST(TRootTDS, SetNSlotsTwice)
117117}
118118#endif
119119
120- TEST (TRootTDS , FromARDF)
120+ TEST (RRootDS , FromARDF)
121121{
122122 std::unique_ptr<RDataSource> tds (new ROOT::Internal::RDF::RRootDS (treeName, fileGlob));
123123 RDataFrame tdf (std::move (tds));
@@ -130,7 +130,7 @@ TEST(TRootTDS, FromARDF)
130130 EXPECT_DOUBLE_EQ (0 ., *min);
131131}
132132
133- TEST (TRootTDS , FromARDFWithJitting)
133+ TEST (RRootDS , FromARDFWithJitting)
134134{
135135 std::unique_ptr<RDataSource> tds (new ROOT::Internal::RDF::RRootDS (treeName, fileGlob));
136136 RDataFrame tdf (std::move (tds));
@@ -144,7 +144,7 @@ TEST(TRootTDS, FromARDFWithJitting)
144144// NOW MT!-------------
145145#ifdef R__USE_IMT
146146
147- TEST (TRootTDS , DefineSlotMT)
147+ TEST (RRootDS , DefineSlotMT)
148148{
149149 const auto nSlots = 4U ;
150150 ROOT::EnableImplicitMT (nSlots);
@@ -163,7 +163,7 @@ TEST(TRootTDS, DefineSlotMT)
163163 EXPECT_LE (nUsedSlots, nSlots);
164164}
165165
166- TEST (TRootTDS , FromARDFMT)
166+ TEST (RRootDS , FromARDFMT)
167167{
168168 std::unique_ptr<RDataSource> tds (new ROOT::Internal::RDF::RRootDS (treeName, fileGlob));
169169 RDataFrame tdf (std::move (tds));
@@ -176,7 +176,7 @@ TEST(TRootTDS, FromARDFMT)
176176 EXPECT_DOUBLE_EQ (0 ., *min);
177177}
178178
179- TEST (TRootTDS , FromARDFWithJittingMT)
179+ TEST (RRootDS , FromARDFWithJittingMT)
180180{
181181 std::unique_ptr<RDataSource> tds (new ROOT::Internal::RDF::RRootDS (treeName, fileGlob));
182182 RDataFrame tdf (std::move (tds));
0 commit comments