in Python by
Q. Which of the following decorator is used to skip a test if a given condition is false, with unittest?

a). unittest.skipIf

b). unittest.skipUntil

c). unittest.skipUnless

d). unittest.skip
...