Beispiel #1
0
        public void ICanBatch_Exposes_BeginBatch()
        {
            var repo = new ContactRepository();

            using (var batch = repo.BeginBatch())
            {
                batch.BatchActions.Count.ShouldEqual(0);
            }
        }