public void ShouldNotIncludeIDEEventPropertiesInDetails()
        {
            var actionEvent = new CommandEvent
            {
                ActiveDocument = Names.Document("d Doc"),
                ActiveWindow   = Names.Window("w Window"),
                IDESessionUUID = "UUID",
                TerminatedAt   = DateTime.Now,
                TriggeredAt    = DateTime.Now,
                TriggeredBy    = EventTrigger.Click
            };
            const string expected = "";
            var          actual   = actionEvent.GetDetailsAsJson();

            Assert.AreEqual(expected, actual);
        }