本文整理汇总了Python中GenMetaFile.GenInfFile.GenPcdSections.strip方法的典型用法代码示例。如果您正苦于以下问题:Python GenPcdSections.strip方法的具体用法?Python GenPcdSections.strip怎么用?Python GenPcdSections.strip使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类GenMetaFile.GenInfFile.GenPcdSections
的用法示例。
在下文中一共展示了GenPcdSections.strip方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testNormalCase7
# 需要导入模块: from GenMetaFile.GenInfFile import GenPcdSections [as 别名]
# 或者: from GenMetaFile.GenInfFile.GenPcdSections import strip [as 别名]
def testNormalCase7(self):
ObjectList = []
ItemType = "Pcd"
TSCName = "TSCName"
CName = "CName"
DValue = "DValue"
FFE = "FFE"
Usage = "UNDEFINED"
Str = "commment line 1\ncomment line 2"
Object = self.ObjectFactory(ItemType, TSCName, CName, DValue, FFE, Usage, Str)
ObjectList.append(Object)
Usage = "CONSUMES"
Str = "Foo"
Object = self.ObjectFactory(ItemType, TSCName, CName, DValue, FFE, Usage, Str)
ObjectList.append(Object)
Usage = "UNDEFINED"
Str = "commment line 3"
Object = self.ObjectFactory(ItemType, TSCName, CName, DValue, FFE, Usage, Str)
ObjectList.append(Object)
Result = GenPcdSections(ObjectList)
Expected = """[Pcd]
# commment line 1
# comment line 2
## CONSUMES # Foo
# commment line 3
TSCName.CName|DValue|FFE"""
self.assertEqual(Result.strip(), Expected)
示例2: testNormalCase7
# 需要导入模块: from GenMetaFile.GenInfFile import GenPcdSections [as 别名]
# 或者: from GenMetaFile.GenInfFile.GenPcdSections import strip [as 别名]
def testNormalCase7(self):
ObjectList = []
ItemType = 'Pcd'
TSCName = 'TSCName'
CName = 'CName'
DValue = 'DValue'
FFE = 'FFE'
Usage = 'UNDEFINED'
Str = 'commment line 1\ncomment line 2'
Object = self.ObjectFactory(ItemType, TSCName, CName, DValue, FFE,
Usage, Str)
ObjectList.append(Object)
Usage = 'CONSUMES'
Str = 'Foo'
Object = self.ObjectFactory(ItemType, TSCName, CName, DValue, FFE,
Usage, Str)
ObjectList.append(Object)
Usage = 'UNDEFINED'
Str = 'commment line 3'
Object = self.ObjectFactory(ItemType, TSCName, CName, DValue, FFE,
Usage, Str)
ObjectList.append(Object)
Result = GenPcdSections(ObjectList)
Expected = '''[Pcd]
# commment line 1
# comment line 2
## CONSUMES # Foo
# commment line 3
TSCName.CName|DValue|FFE'''
self.assertEqual(Result.strip(), Expected)
示例3: testNormalCase9
# 需要导入模块: from GenMetaFile.GenInfFile import GenPcdSections [as 别名]
# 或者: from GenMetaFile.GenInfFile.GenPcdSections import strip [as 别名]
def testNormalCase9(self):
ObjectList = []
ItemType = TAB_INF_FEATURE_PCD
TSCName = "TSCName"
CName = "CName"
DValue = "DValue"
FFE = "FFE"
Usage = "CONSUMES"
Str = ""
Object = self.ObjectFactory(ItemType, TSCName, CName, DValue, FFE, Usage, Str)
ObjectList.append(Object)
Result = GenPcdSections(ObjectList)
Expected = """[FeaturePcd]
TSCName.CName|DValue|FFE"""
self.assertEqual(Result.strip(), Expected)
示例4: testNormalCase4
# 需要导入模块: from GenMetaFile.GenInfFile import GenPcdSections [as 别名]
# 或者: from GenMetaFile.GenInfFile.GenPcdSections import strip [as 别名]
def testNormalCase4(self):
ObjectList = []
ItemType = "Pcd"
TSCName = "TSCName"
CName = "CName"
DValue = "DValue"
FFE = "FFE"
Usage = "CONSUMES"
Str = ""
Object = self.ObjectFactory(ItemType, TSCName, CName, DValue, FFE, Usage, Str)
ObjectList.append(Object)
Result = GenPcdSections(ObjectList)
Expected = "[Pcd]\nTSCName.CName|DValue|FFE ## CONSUMES"
self.assertEqual(Result.strip(), Expected)
示例5: testNormalCase4
# 需要导入模块: from GenMetaFile.GenInfFile import GenPcdSections [as 别名]
# 或者: from GenMetaFile.GenInfFile.GenPcdSections import strip [as 别名]
def testNormalCase4(self):
ObjectList = []
ItemType = 'Pcd'
TSCName = 'TSCName'
CName = 'CName'
DValue = 'DValue'
FFE = 'FFE'
Usage = 'CONSUMES'
Str = ''
Object = self.ObjectFactory(ItemType, TSCName, CName, DValue, FFE,
Usage, Str)
ObjectList.append(Object)
Result = GenPcdSections(ObjectList)
Expected = '[Pcd]\nTSCName.CName|DValue|FFE ## CONSUMES'
self.assertEqual(Result.strip(), Expected)
示例6: testNormalCase9
# 需要导入模块: from GenMetaFile.GenInfFile import GenPcdSections [as 别名]
# 或者: from GenMetaFile.GenInfFile.GenPcdSections import strip [as 别名]
def testNormalCase9(self):
ObjectList = []
ItemType = TAB_INF_FEATURE_PCD
TSCName = 'TSCName'
CName = 'CName'
DValue = 'DValue'
FFE = 'FFE'
Usage = 'CONSUMES'
Str = ''
Object = self.ObjectFactory(ItemType, TSCName, CName, DValue, FFE,
Usage, Str)
ObjectList.append(Object)
Result = GenPcdSections(ObjectList)
Expected = '''[FeaturePcd]
TSCName.CName|DValue|FFE'''
self.assertEqual(Result.strip(), Expected)
示例7: testNormalCase1
# 需要导入模块: from GenMetaFile.GenInfFile import GenPcdSections [as 别名]
# 或者: from GenMetaFile.GenInfFile.GenPcdSections import strip [as 别名]
def testNormalCase1(self):
ObjectList = []
ItemType = 'Pcd'
TSCName = 'TSCName'
CName = 'CName'
DValue = 'DValue'
FFE = 'FFE'
Usage = 'UNDEFINED'
Str = 'Help'
Object = self.ObjectFactory(ItemType, TSCName, CName, DValue, FFE,
Usage, Str)
ObjectList.append(Object)
Result = GenPcdSections(ObjectList)
Expected = \
'[Pcd]\n' + \
'TSCName.CName|DValue|FFE # Help'
self.assertEqual(Result.strip(), Expected)