Best Python code snippet using lisa_python
6201030d0ab11d5bbe4b21ed43b94c5e4da2fd66test_selectioncontroller.py
Source: 6201030d0ab11d5bbe4b21ed43b94c5e4da2fd66test_selectioncontroller.py
...12 self.assertEqual(0, self.controller.create_partition(25))13 self.assertEqual(0, self.controller.create_partition(10))14 self.assertEqual(1, self.controller.create_partition(20))15 self.assertEqual(3, self.controller.create_partition(40))16 def test_get_partitions(self):17 self.assertEqual([], self.controller.get_partitions())18 self.assertEqual(0, self.controller.create_partition(90))19 self.assertEqual([90], self.controller.get_partitions())20 self.assertEqual(0, self.controller.create_partition(10))21 self.assertEqual([10, 90], self.controller.get_partitions())22 self.assertEqual(1, self.controller.create_partition(50))23 self.assertEqual([10, 50, 90], self.controller.get_partitions())24 self.assertEqual(2, self.controller.create_partition(50))25 self.assertEqual([10, 50, 50, 90], self.controller.get_partitions())26 def test_create_partition_out_of_range(self):27 self.assertRaises(ValueError, self.controller.create_partition, -1)28 self.assertRaises(ValueError, self.controller.create_partition, 100.001)29 def test_partition_callbacks(self):30 cbs = []31 self.controller.on_partition_created(lambda i: cbs.append(i))32 self.controller.create_partition(10)33 self.assertEqual([0], cbs)34 self.controller.create_partition(90)35 self.assertEqual([0, 1], cbs)36 self.controller.create_partition(50)37 self.assertEqual([0, 1, 1], cbs)38 self.controller.create_partition(75)39 self.assertEqual([0, 1, 1, 2], cbs)40 self.controller.create_partition(5)41 self.assertEqual([0, 1, 1, 2, 0], cbs)42 self.controller.create_partition(95)43 self.assertEqual([0, 1, 1, 2, 0, 5], cbs)44 def test_remove_partition(self):45 self.controller.create_partition(40)46 self.controller.create_partition(60)47 self.controller.create_partition(20)48 self.controller.create_partition(80)49 self.controller.create_partition(90)50 self.controller.create_partition(66.7)51 self.assertEqual([20, 40, 60, 66.7, 80, 90],52 self.controller.get_partitions())53 self.assertRaises(IndexError, self.controller.remove_partition, 6)54 self.controller.remove_partition(1)55 self.assertEqual([20, 60, 66.7, 80, 90],56 self.controller.get_partitions())57 self.controller.remove_partition(4)58 self.assertEqual([20, 60, 66.7, 80],59 self.controller.get_partitions())60 self.controller.remove_partition(0)61 self.assertEqual([60, 66.7, 80],62 self.controller.get_partitions())63 self.controller.remove_partition(1)64 self.assertEqual([60, 80],65 self.controller.get_partitions())66 self.controller.remove_partition(0)67 self.assertEqual([80],68 self.controller.get_partitions())69 self.controller.remove_partition(0)70 self.assertEqual([],71 self.controller.get_partitions())72 self.assertRaises(IndexError, self.controller.remove_partition, 0)73 self.assertRaises(IndexError, self.controller.remove_partition, 1)74 def test_create_selection(self):75 # no overlaps76 self.assertEqual(0, self.controller.create_selection(50, 75))77 self.assertEqual(1, self.controller.create_selection(80, 90))78 self.assertEqual(2, self.controller.create_selection(95, 100))79 self.assertEqual(0, self.controller.create_selection(10, 20))80 # order doesn't matter81 self.assertEqual(0, self.controller.create_selection(2, 1))82 self.assertEqual(2, self.controller.create_selection(40, 30))83 # new contained in old84 self.assertEqual(2, self.controller.create_selection(31, 39))85 self.assertEqual(2, self.controller.create_selection(31, 40))...
ps1_partition.py
Source: ps1_partition.py
...11 for b in partitions(parts[1]):12 yield [parts[0]]+b13# This is a helper function that will fetch all of the available 14# partitions for you to use for your brute force algorithm.15def get_partitions(set_):16 for partition in partitions(set_):17 yield [list(elt) for elt in partition]18### Uncomment the following code and run this file19### to see what get_partitions does if you want to visualize it:20#for item in (get_partitions(['a','b','c','d'])):21# print(item)22#for partition in get_partitions([1,2,3]):...
Check out the latest blogs from LambdaTest on this topic:
Automating testing is a crucial step in the development pipeline of a software product. In an agile development environment, where there is continuous development, deployment, and maintenance of software products, automation testing ensures that the end software products delivered are error-free.
Before we discuss the Joomla testing, let us understand the fundamentals of Joomla and how this content management system allows you to create and maintain web-based applications or websites without having to write and implement complex coding requirements.
The QA testing career includes following an often long, winding road filled with fun, chaos, challenges, and complexity. Financially, the spectrum is broad and influenced by location, company type, company size, and the QA tester’s experience level. QA testing is a profitable, enjoyable, and thriving career choice.
It’s strange to hear someone declare, “This can’t be tested.” In reply, I contend that everything can be tested. However, one must be pleased with the outcome of testing, which might include failure, financial loss, or personal injury. Could anything be tested when a claim is made with this understanding?
When it comes to UI components, there are two versatile methods that we can use to build it for your website: either we can use prebuilt components from a well-known library or framework, or we can develop our UI components from scratch.
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.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!