Skip to content

Instantly share code, notes, and snippets.

@masouduut94
Created July 10, 2020 07:38
Show Gist options
  • Save masouduut94/8c8c1212fa23458057402185413b1196 to your computer and use it in GitHub Desktop.
Save masouduut94/8c8c1212fa23458057402185413b1196 to your computer and use it in GitHub Desktop.
import unittest
import sys
from unittest.case import TestCase
sys.path.append('../..')
from json_parser.json_parser import *
class TestFrame(TestCase):
def setUp(self) -> None:
self.json_parser = JsonParser()
self.video_details = {'frame_width': 500,
'frame_height': 200,
'frame_rate': 20,
'video_name': 'something.mp4'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment