Example #1
0
    public void ScreenshotSerialization()
    {
        var s = new Screenshot {
            Width      = 10,
            Height     = 20,
            CapturedAt = Moment.EpochStart,
            Image      = new Base64Encoded(new byte[] { 1, 2, 3 })
        };

        s.AssertPassesThroughAllSerializers();
    }