Skip to content

Commit

Permalink
Updated examples
Browse files Browse the repository at this point in the history
  • Loading branch information
vderyushev committed Aug 5, 2024
1 parent d72933f commit 6269256
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Examples/ApiExamples/ApiExamples/ExReportingEngine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ public void InsertImageDynamicallyByUri()
DocumentHelper.CreateTemplateDocumentWithDrawObjects("<<image [src.ImageString]>>", ShapeType.TextBox);
ImageTestClass imageUri = new ImageTestBuilder()
.WithImageString(
"http://joomla-aspose.dynabic.com/templates/aspose/App_Themes/V3/images/customers/americanexpress.png")
"https://metrics.aspose.com/img/headergraphics.svg")
.Build();

BuildReport(template, imageUri, "src", ReportBuildOptions.None);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace DocsExamples.File_Formats_and_Conversions.Complex_examples_and_helpers
public class WorkingWithDocumentInDatabase : DocsExamplesBase
{
#if NET48 || JAVA
[Test]
[Test, Category("IgnoreOnJenkins")]
public void LoadAndSaveDocToDatabase()
{
Document doc = new Document(MyDir + "Document.docx");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public void MustacheSyntaxUsingDataTable()
}

#if NET48 || JAVA
[Test]
[Test, Category("IgnoreOnJenkins")]
public void ExecuteWithRegionsDataTable()
{
//ExStart:ExecuteWithRegionsDataTable
Expand Down Expand Up @@ -141,7 +141,7 @@ private DataTable ExecuteDataTable(string commandText)
}
//ExEnd:ExecuteWithRegionsDataTableMethods

[Test]
[Test, Category("IgnoreOnJenkins")]
public void ProduceMultipleDocuments()
{
//ExStart:ProduceMultipleDocuments
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ public void MailMergeAndConditionalField()
}

#if NET48 || JAVA
[Test]
[Test, Category("IgnoreOnJenkins")]
public void MailMergeImageFromBlob()
{
//ExStart:MailMergeImageFromBlob
Expand Down Expand Up @@ -408,7 +408,7 @@ public void FieldNext()
FieldNextIf fieldNextIf = (FieldNextIf)builder.InsertField(FieldType.FieldNextIf, true);

// Or use SkipIf field.
FieldNextIf fieldSkipIf = (FieldNextIf)builder.InsertField(FieldType.FieldSkipIf, true);
FieldSkipIf fieldSkipIf = (FieldSkipIf)builder.InsertField(FieldType.FieldSkipIf, true);

fieldNextIf.LeftExpression = "5";
fieldNextIf.RightExpression = "2 + 3";
Expand Down

0 comments on commit 6269256

Please sign in to comment.