前提・実現したいこと
ここに質問の内容を詳しく書いてください。
VSCOde + PythonでJunitを作っています。
テストコードimport時にエラーになります.
同じフォルダにありコード保管でも保管できます。
コンパイルエラーにもなっていません。
なぜimportできないとなるのでしょうか??
発生している問題・エラーメッセージ
Unable to import inc_dec ... [3, 1]
該当のソースコード
inc_dec.py
def increment(x): return x + 1 def decrement(x): return x - 1
test.py
import unittest import inc_dec class Test_tesIncrementDecrement(unittest.TestCase): def test_TestIncrement(self): self.assertEqual(inc_dec.increment(3), 4) def test_TestDecement(self): self.assertEqual(inc_dec.decrement(3), 2)
試したこと
ここに問題に対して試したことを記載してください。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。