Пример #1
0
    public void Section()
    {
        var s = new SectionItemType();
        var d = (SDC.DisplayedType)s;

        s = new SectionItemType();


        var b = new SectionItemType();

        //s.Body = b;
        b.baseURI = "www.cap.org/sdc/a1234/123";
        //b.A

        Assert.Pass("Form Design Passed1");
        Assert.Pass("Form Design Passed2");
    }
Пример #2
0
    public void FormDesign()
    {
        var FD = new FormDesignType(null);

        //var dr = new DataRow();
        //FD.Body.ID="123";//should fail
        FD.Body    = new SectionItemType();
        FD.Body.ID = "123";//should pass

        var b = new SectionItemType();

        FD.Body   = b;
        b.baseURI = "www.cap.org/sdc/a1234/123";
        b.AddFillSection();

        //b.A

        Assert.Pass("Form Design Passed1");
        Assert.Pass("Form Design Passed2");
    }