DOAA: Pytest

DOAA: Pytest

Professional Development

5 Qs

quiz-placeholder

Similar activities

Co wiesz o Pythonie

Co wiesz o Pythonie

Professional Development

8 Qs

Week3 Quest3

Week3 Quest3

Professional Development

3 Qs

IT General Control

IT General Control

Professional Development

10 Qs

C&SE Learning Labs Week 2

C&SE Learning Labs Week 2

Professional Development

10 Qs

Multiple Regression Analysis

Multiple Regression Analysis

University - Professional Development

10 Qs

Dy02-Data Explorer Quiz

Dy02-Data Explorer Quiz

Professional Development

10 Qs

Графический модуль Python (Надя и Шынар)

Графический модуль Python (Надя и Шынар)

Professional Development

10 Qs

FinTech 14-1 Deep Learning

FinTech 14-1 Deep Learning

Professional Development

10 Qs

DOAA: Pytest

DOAA: Pytest

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Aldrian Obaja Muis

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE SELECT QUESTION

1 min • 1 pt

Which of the following files will be executed by pytest?

($DIR is your project directory where you run pytest)

$DIR/test_app.py

$DIR/tests/mytest.py

$DIR/app/my_test.py

$DIR/tests/conftest.py

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

In pytest, what's the term for a function that is called before each test?

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What would be the result of running this test?

test_dbl PASSED

test_cst PASSED

test_dbl ERROR

test_cst PASSED

test_dbl PASSED

test_cst ERROR

Nothing runs, pytest will throw error

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is NOT the purpose of parameterization in pytest?

To create multiple test cases with similar logic

To improve test readability

To run the same test with different input values

To call an external function

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which naming convention is typically used for pytest test files?

Starting with test or ending with _test

Ending with _test

Starting with test

There is no specific naming convention