Skip to content

Commit

Permalink
Merge pull request bcgov#3732 from pravkuma14/dev
Browse files Browse the repository at this point in the history
PSP-7648- Create Disposition Form
  • Loading branch information
stairaku authored Jan 20, 2024
2 parents ff51dc8 + 20d809d commit 27ca967
Show file tree
Hide file tree
Showing 6 changed files with 477 additions and 0 deletions.
35 changes: 35 additions & 0 deletions testing/PIMS.Tests.Automation/Classes/DispositionFile.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@


namespace PIMS.Tests.Automation.Classes
{
public class DispositionFile
{
public string? DispositionFileStatus { get; set; } = String.Empty;

public string? AssignedDate { get; set; } = String.Empty;

public string? DispositionCompletedDate { get; set; } = String.Empty;

public string? DispositionFileName { get; set; } = String.Empty;

public string? ReferenceNumber { get; set; } = String.Empty;

public string? DispositionStatus { get; set; } = null!;

public string? DispositionType { get; set; } = null!;

public string? InitiatingDocument { get; set; } = String.Empty;

public string? OtherInitiatingDocument { get; set; } = String.Empty;

public string? InitiatingDocumentDate { get; set; } = String.Empty;

public string? PhysicalFileStatus { get; set; } = String.Empty;

public string? InitiatingBranch { get; set; } = String.Empty;

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


}
}
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
@@ -0,0 +1,9 @@
@Disposition-Files
Feature: DispositionFiles

Test cases for Disposition Files feature

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
128 changes: 128 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 27ca967

Please sign in to comment.