| 1340 | explicit MyDevice(int64_t value) : Device(true), value_(value) {} |
| 1341 | const char* type_name() const override { return kMyDeviceTypeName; } |
| 1342 | std::string ToString() const override { return kMyDeviceTypeName; } |
| 1343 | bool Equals(const Device& other) const override { |
| 1344 | if (other.type_name() != kMyDeviceTypeName || other.device_type() != device_type()) { |
| 1345 | return false; |
no outgoing calls
no test coverage detected