Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Python Testing

Hi, how do i write a test, to Test for the default behavior (of a method ) of printing a range that we give it?

import unittest
from app.logic import FizzBuzzService


class FizzBuzzServiceTestCases(unittest.TestCase):
    def setUp(self):
        """
        Create an instance of fizz_buzz_service
        """
        self.fizzbuzz = FizzBuzzService()

    def test_it_prints_a_range_of_numbers(self):
        """
        Test for the default behavior of printing the range that we give fizz_buzz_service
        """
        pass
class FizzBuzzService:
    def print_range(self, x, y):
        for i in range(x, y):
            print(i)

Tried this but still some guidance

class FizzBuzzService:
    def print_number(self, num):
        for i in range(num):
            print(i, end=' ')
import unittest
from app.logic import FizzBuzzService


class FizzBuzzServiceTestCases(unittest.TestCase):
    def setUp(self):
        """
        Create an instance of fizz_buzz_service
        """
        self.fizzbuzz = FizzBuzzService()

    def test_it_prints_a_number(self):
        """
        Test for the default behavior of printing the range that we give fizz_buzz_service
        """
        number_range = range(10)
        self.assertEqual(self.fizzbuzz.print_number(10), print(*number_range))