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