Exemplo n.º 1
0
 protected override void Given()
 {
     sut = new SqlServerProjectionWriter <Guid, Foo>(connectionString);
     id  = Guid.NewGuid();
     foo = new Foo {
         Id = id, Name = "Foo name", DueDate = DateTime.Now, Counter = 4
     };
 }
 protected override void Given()
 {
     sut = new SqlServerProjectionWriter<Guid, Foo>(connectionString);
     id = Guid.NewGuid();
     foo = new Foo { Id = id, Name = "Foo name", DueDate = DateTime.Now, Counter = 4 };
 }
Exemplo n.º 3
0
 protected override void Given()
 {
     base.Given();
     _sut = new SqlServerProjectionWriter <string, Baz2>(connectionString);
 }
 protected override void Given()
 {
     base.Given();
     _sut = new SqlServerProjectionWriter<string, Baz2>(connectionString);
 }