| 1318 | explicit MyDevice(int64_t value) : Device(true), value_(value) {} |
| 1319 | const char* type_name() const override { return kMyDeviceTypeName; } |
| 1320 | std::string ToString() const override { return kMyDeviceTypeName; } |
| 1321 | bool Equals(const Device& other) const override { |
| 1322 | if (other.type_name() != kMyDeviceTypeName || other.device_type() != device_type()) { |
| 1323 | return false; |
no outgoing calls
no test coverage detected