EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
TestMaterialEffects.cpp
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file TestMaterialEffects.cpp
1 #include <gtest/gtest.h>
2 
3 #include <AbsMaterialInterface.h>
4 #include <MaterialEffects.h>
5 
6 namespace genfit {
7 
8  class MaterialEffectsTests : public ::testing::Test {
9  protected:
10  virtual void SetUp() {
12  }
13 
14  virtual void TearDown() {
16  }
17  };
18 
19 
20  // TODO: Write a ConstMaterialInterface similiar to the ConstMagneticField for testing purposes.
21  // TODO: We can easily check the formulas then! Yeah...
22 }