How to use test_custom_dict method in assertpy

Best Python code snippet using assertpy_python

test_hanlp.py

Source:test_hanlp.py Github

copy

Full Screen

...74 "欢迎新老师生前来就餐",75 "工信处女干事每月经过下属科室都要亲口交代24口交换机等技术性器件的安装工作",76 "随着页游兴起到现在的页游繁盛,依赖于存档进行逻辑判断的设计减少了,但这块也不能完全忽略掉。"]77 for sentence in testCases: print(HanLP.segment(sentence))78 def test_custom_dict(self):79 logging.info("test_custom_dict")80 # 动态增加81 text = "攻城狮逆袭单身狗,迎娶白富美,走上人生巅峰" # 怎么可能噗哈哈!82 assert len(HanLP.segment(text)) == 12, "添加自定义词汇前,分词结果预期"83 # 强行插入84 CustomDictionary.add("攻城狮")85 CustomDictionary.insert("白富美", "nz 1024")86 CustomDictionary.add("单身狗", "nz 1024 n 1")87 CustomDictionary.get("单身狗")88 text = "攻城狮逆袭单身狗,迎娶白富美,走上人生巅峰" # 怎么可能噗哈哈!89 assert len(HanLP.segment(text)) == 10, "添加自定义词汇后,分词结果预期"90def test():91 unittest.main()92if __name__ == '__main__':...

Full Screen

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run assertpy automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful