xref: /openbmc/phosphor-event/test/utest.cpp (revision 37fd9a65)
1 #include "sample.h"
2 #include <gtest/gtest.h>
3 
4 TEST(FactorialTest, Zero) {
5     EXPECT_EQ(1, Factorial(0));
6 }
7