test_Riccati_Bessel_logarithmic_derivative.cc 275 B

12345678910
  1. #include "gtest/gtest.h"
  2. #include "../src/nmie-impl.hpp"
  3. TEST(RiccatiBesselTest, HandlesInput) {
  4. nmie::MultiLayerMie<double> nmie;
  5. EXPECT_EQ(1, 1)<<"Should be equal";
  6. }
  7. int main(int argc, char **argv) {
  8. testing::InitGoogleTest(&argc, argv);
  9. return RUN_ALL_TESTS();
  10. }