Exemplo n.º 1
0
        public void BuildsFieldWithDefaultValues()
        {
            OverviewOptions overviewOptions = OverviewOptionsBuilder.NewOverviewOptions()
                                              .WithTitle()
                                              .WithBody()
                                              .WithDocumentSection()
                                              .WithUploadSection()
                                              .Build();

            Assert.IsTrue(overviewOptions.Title);
            Assert.IsTrue(overviewOptions.Body);
            Assert.IsTrue(overviewOptions.DocumentSection);
            Assert.IsTrue(overviewOptions.UploadSection);
        }
Exemplo n.º 2
0
        public void BuildsFieldWithSpecifiedValues()
        {
            OverviewOptions overviewOptions = OverviewOptionsBuilder.NewOverviewOptions()
                                              .WithoutTitle()
                                              .WithoutBody()
                                              .WithoutDocumentSection()
                                              .WithoutUploadSection()
                                              .Build();

            Assert.IsFalse(overviewOptions.Title);
            Assert.IsFalse(overviewOptions.Body);
            Assert.IsFalse(overviewOptions.DocumentSection);
            Assert.IsFalse(overviewOptions.UploadSection);
        }
 public SigningUiOptionsBuilder WithOverviewOptions(OverviewOptions overviewOptions)
 {
     this.overviewOptions = overviewOptions;
     return(this);
 }