Example #1
0
 public void Initialize()
 {
     _persistCreative = new PersistCreative {
         CreativeId = 1, CreativeName = "ABC", AdvertiserId = 46
     };
     SetupCreativeRepository();
 }
Example #2
0
            public void Then_A_Null_Initial_State_Will_Cause_A_DomainException()
            {
                // ARRANGE
                PersistCreative persistCreative = null;

                // ACT
                var creative = new Creative(persistCreative);

                // ASSERT
                // Nothing to assert.
            }