import logging
from django.test import TestCase

__author__ = 'ahmetdal'

logger = logging.getLogger(__name__)


class test_TestingSample(TestCase):
    def setUp(self):
        logger.info("TestingSample is initialized.")

    def tearDown(self):
        logger.info("TestingSample is teared down...")

    def test_first(self):
        self.assertEqual(1, 1)
        logger.info("TestingSample first test is passed.")



