public void Create()
        {
            var pool = new ManualLogicLooperPool(60.0);

            pool.Loopers.Should().HaveCount(1);
            pool.FakeLooper.TargetFrameRate.Should().Be(60.0);
        }
        public void RegisterActionAsync()
        {
            var pool = new ManualLogicLooperPool(60.0);

            var t1 = pool.RegisterActionAsync((in LogicLooperActionContext ctx) =>
            {
                return(false);
            });