Skip to content

Commit

Permalink
Merge pull request #3741 from pravkuma14/disposition_checklist
Browse files Browse the repository at this point in the history
PSP 7648-Disposition Checklist Automation
  • Loading branch information
pravkuma14 authored Jan 24, 2024
2 parents 6aee413 + d3dc73b commit 033b240
Show file tree
Hide file tree
Showing 6 changed files with 684 additions and 15 deletions.
48 changes: 48 additions & 0 deletions testing/PIMS.Tests.Automation/Classes/DispositionFile.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,54 @@ public class DispositionFile

public string DispositionMOTIRegion { get; set; } = null!;

public int DispositionFileChecklistIndex { get; set; } = 0;

public DispositionFileChecklist? DispositionFileChecklist { get; set; } = new DispositionFileChecklist();

}

public class DispositionFileChecklist
{
public string? FileInitiationSelect1 { get; set; } = String.Empty;
public string? FileInitiationSelect2 { get; set; } = String.Empty;
public string? FileInitiationSelect3 { get; set; } = String.Empty;
public string? FileInitiationSelect4 { get; set; } = String.Empty;
public string? FileInitiationSelect5 { get; set; } = String.Empty;

public string? DispositionPreparationSelect1 { get; set; } = String.Empty;
public string? DispositionPreparationSelect2 { get; set; } = String.Empty;
public string? DispositionPreparationSelect3 { get; set; } = String.Empty;
public string? DispositionPreparationSelect4 { get; set; } = String.Empty;

public string? ReferralsAndConsultationsSelect1 { get; set; } = String.Empty;
public string? ReferralsAndConsultationsSelect2 { get; set; } = String.Empty;
public string? ReferralsAndConsultationsSelect3 { get; set; } = String.Empty;
public string? ReferralsAndConsultationsSelect4 { get; set; } = String.Empty;
public string? ReferralsAndConsultationsSelect5 { get; set; } = String.Empty;
public string? ReferralsAndConsultationsSelect6 { get; set; } = String.Empty;
public string? ReferralsAndConsultationsSelect7 { get; set; } = String.Empty;

public string? DirectSaleRoadClosureSelect1 { get; set; } = String.Empty;
public string? DirectSaleRoadClosureSelect2 { get; set; } = String.Empty;
public string? DirectSaleRoadClosureSelect3 { get; set; } = String.Empty;
public string? DirectSaleRoadClosureSelect4 { get; set; } = String.Empty;
public string? DirectSaleRoadClosureSelect5 { get; set; } = String.Empty;
public string? DirectSaleRoadClosureSelect6 { get; set; } = String.Empty;
public string? DirectSaleRoadClosureSelect7 { get; set; } = String.Empty;
public string? DirectSaleRoadClosureSelect8 { get; set; } = String.Empty;
public string? DirectSaleRoadClosureSelect9 { get; set; } = String.Empty;

public string? SaleInformationSelect1 { get; set; } = String.Empty;
public string? SaleInformationSelect2 { get; set; } = String.Empty;
public string? SaleInformationSelect3 { get; set; } = String.Empty;
public string? SaleInformationSelect4 { get; set; } = String.Empty;
public string? SaleInformationSelect5 { get; set; } = String.Empty;
public string? SaleInformationSelect6 { get; set; } = String.Empty;
public string? SaleInformationSelect7 { get; set; } = String.Empty;
public string? SaleInformationSelect8 { get; set; } = String.Empty;
public string? SaleInformationSelect9 { get; set; } = String.Empty;
public string? SaleInformationSelect10 { get; set; } = String.Empty;
public string? SaleInformationSelect11 { get; set; } = String.Empty;

}
}
Binary file modified testing/PIMS.Tests.Automation/Data/PIMS_Testing_Data.xlsx
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@ Scenario: 01. Disposition File Details
Given I create a new Disposition File from row number 1
#When I add additional information to the Disposition File Details
#Then A new Disposition file is created successfully

Scenario: 02. Disposition Checklist Tab
Given I create a new Disposition File from row number 1
When I insert Checklist information to an Disposition File
Then Disposition File's Checklist has been saved successfully
31 changes: 31 additions & 0 deletions testing/PIMS.Tests.Automation/Features/DispositionFiles.feature.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 033b240

Please sign in to comment.