Ejemplo n.º 1
0
        public async Task GetStartPoint_Attributes()
        {
            CodeImport import = await GetCodeImportAsync(2);

            AssertEx.Throws <NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartAttributes));
        }
Ejemplo n.º 2
0
        public async Task GetStartPoint_AttributesWithDelimiter()
        {
            CodeImport import = await GetCodeImportAsync(2);

            AssertEx.Throws <COMException>(() => import.GetStartPoint(vsCMPart.vsCMPartAttributesWithDelimiter));
        }
Ejemplo n.º 3
0
        public void GetStartPoint_Body()
        {
            CodeImport import = GetCodeImport(2);

            Assert.Throws <COMException>(() => import.GetStartPoint(vsCMPart.vsCMPartBody));
        }
Ejemplo n.º 4
0
        public async Task GetStartPoint_BodyWithDelimiter()
        {
            CodeImport import = await GetCodeImportAsync(2);

            AssertEx.Throws <NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartBodyWithDelimiter));
        }
Ejemplo n.º 5
0
        public void GetStartPoint_Attributes()
        {
            CodeImport import = GetCodeImport(2);

            Assert.Throws <NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartAttributes));
        }
Ejemplo n.º 6
0
        public void GetStartPoint_AttributesWithDelimiter()
        {
            CodeImport import = GetCodeImport(2);

            Assert.Throws <COMException>(() => import.GetStartPoint(vsCMPart.vsCMPartAttributesWithDelimiter));
        }
Ejemplo n.º 7
0
        public void GetStartPoint_Whole()
        {
            CodeImport import = GetCodeImport(2);

            Assert.Throws <NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartWhole));
        }
Ejemplo n.º 8
0
        public void GetStartPoint_BodyWithDelimiter()
        {
            CodeImport import = GetCodeImport(2);

            Assert.Throws <NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartBodyWithDelimiter));
        }
Ejemplo n.º 9
0
        public async Task GetStartPoint_Body()
        {
            CodeImport import = await GetCodeImportAsync(2);

            Assert.Throws <COMException>(() => import.GetStartPoint(vsCMPart.vsCMPartBody));
        }
Ejemplo n.º 10
0
        public async Task GetStartPoint_Whole()
        {
            CodeImport import = await GetCodeImportAsync(2);

            Assert.Throws <NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartWhole));
        }
Ejemplo n.º 11
0
        public void GetStartPoint_Header()
        {
            CodeImport import = GetCodeImport(2);

            AssertEx.Throws <NotImplementedException>(() => import.GetStartPoint(vsCMPart.vsCMPartHeader));
        }