Example #1
0
 public void HasExperimentalAttributeTrue()
 {
     ExcludeExperimentalMigrations.HasExperimentalAttribute(new M20190718160123_WithAttributeMigration())
     .Should().BeTrue();
 }
Example #2
0
 public void HasExperimentalAttributeFalse()
 {
     ExcludeExperimentalMigrations.HasExperimentalAttribute(new M20190718160124_WithoutAttributeMigration())
     .Should().BeFalse();
 }
Example #3
0
 public void HasExperimentalAttributeNull()
 {
     ExcludeExperimentalMigrations.HasExperimentalAttribute(null)
     .Should().BeFalse();
 }