All: Reformat according to new standard
This commit is contained in:
committed by
Kacper Donat
parent
ef997f2259
commit
9fe130cd73
@@ -18,19 +18,23 @@ protected:
|
||||
// Create and return a list of invalid IndexedNames
|
||||
static std::vector<Data::IndexedName> givenInvalidIndexedNames()
|
||||
{
|
||||
return std::vector<Data::IndexedName> {Data::IndexedName(),
|
||||
Data::IndexedName("", 1),
|
||||
Data::IndexedName("INVALID42NAME", 1),
|
||||
Data::IndexedName(".EDGE", 1)};
|
||||
return std::vector<Data::IndexedName> {
|
||||
Data::IndexedName(),
|
||||
Data::IndexedName("", 1),
|
||||
Data::IndexedName("INVALID42NAME", 1),
|
||||
Data::IndexedName(".EDGE", 1)
|
||||
};
|
||||
}
|
||||
|
||||
// Create and return a list of valid IndexedNames
|
||||
static std::vector<Data::IndexedName> givenValidIndexedNames()
|
||||
{
|
||||
return std::vector<Data::IndexedName> {Data::IndexedName("NAME"),
|
||||
Data::IndexedName("NAME1"),
|
||||
Data::IndexedName("NAME", 1),
|
||||
Data::IndexedName("NAME_WITH_UNDERSCORES12345")};
|
||||
return std::vector<Data::IndexedName> {
|
||||
Data::IndexedName("NAME"),
|
||||
Data::IndexedName("NAME1"),
|
||||
Data::IndexedName("NAME", 1),
|
||||
Data::IndexedName("NAME_WITH_UNDERSCORES12345")
|
||||
};
|
||||
}
|
||||
|
||||
// An arbitrary list of C strings used for testing some types of construction
|
||||
|
||||
Reference in New Issue
Block a user