| 4 | using namespace ftg; |
| 5 | |
| 6 | TEST(TestDirectionAnalysisReport, fromJsonN) { |
| 7 | DirectionAnalysisReport Report1, Report2; |
| 8 | Report1.set("Func1", 0, Dir_NoOp); |
| 9 | ASSERT_TRUE(Report2.fromJson(Report1.toJson())); |
| 10 | ASSERT_FALSE(Report2.has("Func1", 0)); |
| 11 | } |