EntityToString function takes an Entity object and converts it into a string.
(entity *base.Entity)
| 158 | |
| 159 | // EntityToString function takes an Entity object and converts it into a string. |
| 160 | func EntityToString(entity *base.Entity) string { |
| 161 | return fmt.Sprintf(ENTITY, entity.GetType(), entity.GetId()) |
| 162 | } |
| 163 | |
| 164 | // EntityAndCallOrAttributeToString - |
| 165 | func EntityAndCallOrAttributeToString(entity *base.Entity, attributeOrCall string, arguments ...*base.Argument) string { |
no test coverage detected