Skip to content

Commit

Permalink
Add JacobianTest file. Refs #970
Browse files Browse the repository at this point in the history
  • Loading branch information
martyngigg committed Apr 18, 2013
1 parent cd48231 commit 18ccb45
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import unittest
from mantid.api import Jacobian

class JacobianTest(unittest.TestCase):

def test_class_has_expected_attrs(self):
self.assertTrue(hasattr(Jacobian, 'set'), "No set method found on Jacobian class")
self.assertTrue(hasattr(Jacobian, 'get'), "No get method found on Jacobian class")

if __name__ == '__main__':
unittest.main()

0 comments on commit 18ccb45

Please sign in to comment.