You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expect.equal inputFile.Id expectedFilePath "Input file path should match"
1779
+
letexampleOfWork= Expect.wantSome (LDFile.tryGetExampleOfWork inputFile)"Input file should have an exampleOfWork"
1780
+
letexampleOfWorkAsRef:LDRef = Expect.wantSome (tryLDRef exampleOfWork)"File ExampleOfWork should be a reference"
1781
+
Expect.equal exampleOfWorkAsRef.Id $"#FormalParameter_R_{run.Identifier}_{TestObjects.CWL.Inputs.File.inputFileName}""File ExampleOfWork ID should match input formal parameter"
1782
+
1783
+
letinputString= Expect.wantSome (Seq.tryFind LDPropertyValue.validateCWLParameter objects)"Should have one input string"
1784
+
letinputStringValue= Expect.wantSome (LDPropertyValue.tryGetValueAsString inputString)"Input string should have a value"
1785
+
Expect.equal inputStringValue TestObjects.CWL.YAMLParameterFile.String.stringValue "Input string value should match"
1786
+
letexampleOfWork2= Expect.wantSome (LDPropertyValue.tryGetExampleOfWork inputString)"Input string should have an exampleOfWork"
1787
+
letexampleOfWorkAsRef2:LDRef = Expect.wantSome (tryLDRef exampleOfWork2)"String ExampleOfWork should be a reference"
1788
+
Expect.equal exampleOfWorkAsRef2.Id $"#FormalParameter_R_{run.Identifier}_{TestObjects.CWL.Inputs.String.inputStringName}""String ExampleOfWork ID should match input formal parameter"
0 commit comments