| 23 | using TestProtobufMutatorDeathTest = TestProtobufMutator; |
| 24 | |
| 25 | TEST_F(TestProtobufMutator, IntP) { |
| 26 | auto IntT = std::make_shared<Type>(Type::TypeID_Integer); |
| 27 | IntT->setASTTypeName("int"); |
| 28 | auto Def = std::make_shared<Definition>(); |
| 29 | Def->DataType = IntT; |
| 30 | FuzzInput Input(Def); |
| 31 | Mutator.addInput(Input); |
| 32 | verifyGenerateResult(); |
| 33 | } |
| 34 | |
| 35 | TEST_F(TestProtobufMutator, IntArrP) { |
| 36 | auto ArrT = std::make_shared<Type>(Type::TypeID_Pointer); |
no test coverage detected