for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
import os
import subprocess
import sys
from queue import Queue
sys.path.insert(0, ".")
import unittest
from bears.tests.LocalBearTestHelper import LocalBearTestHelper
from bears.c_languages.CSharpLintBear import CSharpLintBear
from coalib.settings.Section import Section
class CSharpLintBearTest(LocalBearTestHelper):
def setUp(self):
self.section = Section("test section")
self.uut = CSharpLintBear(self.section, Queue())
self.test_file1 = os.path.join(os.path.dirname(__file__),
"test_files",
"csharplint_test1.cs")
self.test_file2 = os.path.join(os.path.dirname(__file__),
"csharplint_test2.cs")
def test_run(self):
# Test a file with no issues
self.assertLinesValid(self.uut, [], self.test_file1)
# Test a file with issues
self.assertLinesInvalid(self.uut, [], self.test_file2)
def skip_test():
try:
subprocess.Popen(['mcs', '--version'],
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
return False
except OSError:
return "mono's mcs is not installed."
if __name__ == '__main__':
unittest.main(verbosity=2)