Ejemplo n.º 1
0
        public virtual void TestEverythingSpecified()
        {
            CodedTypeR2 <Code> codedType = new CodedTypeR2 <Code>();

            codedType.Code           = CeRxDomainTestValues.CENTIMETRE;
            codedType.CodeSystemName = "aCodeSystemName";
            // Doesn't appear in the output, but shouldn't log an error either
            codedType.CodeSystemVersion = "aCodeSystemVersion";
            codedType.DisplayName       = "aDisplayName";
            // Doesn't appear in the output, but shouldn't log an error either
            codedType.SimpleValue = "simpleValue";
            codedType.Operator    = SetOperator.CONVEX_HULL;
            codedType.Value       = BigDecimal.ONE;
            codedType.Translation.Add(new CodedTypeR2 <Code>());
            codedType.Qualifier.Add(new CodeRole());
            EncapsulatedData originalText = new EncapsulatedData();

            originalText.Content   = "original text not allowed for CS";
            codedType.OriginalText = originalText;
            CS_R2 <Code> cs     = new CS_R2Impl <Code>(codedType);
            string       result = new CsR2PropertyFormatter().Format(GetContext("name", "CS"), cs);

            Assert.IsFalse(this.result.IsValid());
            Assert.AreEqual(7, this.result.GetHl7Errors().Count);
            Assert.AreEqual("<name code=\"cm\"/>", StringUtils.Trim(result), "result");
        }
Ejemplo n.º 2
0
        public virtual void TestOriginalTextAndNullFlavor()
        {
            CodedTypeR2 <Code> codedType    = new CodedTypeR2 <Code>();
            EncapsulatedData   originalText = new EncapsulatedData();

            originalText.Content   = "original text not allowed for CS";
            codedType.OriginalText = originalText;
            CS_R2 <Code> cs = new CS_R2Impl <Code>(codedType);

            cs.NullFlavor = Ca.Infoway.Messagebuilder.Domainvalue.Nullflavor.NullFlavor.NO_INFORMATION;
            string result = new CsR2PropertyFormatter().Format(GetContext("name", "CS"), cs);

            Assert.IsFalse(this.result.IsValid());
            Assert.AreEqual(1, this.result.GetHl7Errors().Count);
            Assert.IsTrue(this.result.GetHl7Errors()[0].GetMessage().Contains("originalText"));
            Assert.AreEqual("<name nullFlavor=\"NI\"/>", StringUtils.Trim(result), "result");
        }