Changeset 75eeb425 in sasview for test/sansguiframe
- Timestamp:
- Dec 24, 2013 1:32:14 PM (11 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 81b524f
- Parents:
- a25d242
- Location:
- test/sansguiframe/test
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
test/sansguiframe/test/cansas1d.xml
r5777106 r75eeb425 49 49 50 50 </SASsample> 51 <SASinstrument name="TEST instrument">51 <SASinstrument> 52 52 <name>canSAS instrument</name> 53 53 <SASsource name="source name"> … … 85 85 4.150 86 86 </SDD> 87 <orientation> 87 <offset> 88 <x unit="mm">1</x> 89 <y unit="mm">2</y> 90 </offset> 91 <orientation> 88 92 <roll unit="degree">1.00</roll> 89 93 <pitch unit="degree">0.00</pitch> 90 94 <yaw unit="degree">0.00</yaw> 91 95 </orientation> 92 <offset>93 <x unit="mm">1</x>94 <y unit="mm">2</y>95 </offset>96 96 <beam_center> 97 97 <x unit="mm">322.64</x> … … 135 135 <term name="ABS:IZERO">230.09</term> 136 136 <term name="ABS:XSECT" unit="mm">1</term> 137 <SASprocessnote />137 <SASprocessnote>No Information</SASprocessnote> 138 138 </SASprocess> 139 139 <SASnote /> -
test/sansguiframe/test/utest_manipulations.py
r5777106 r75eeb425 15 15 16 16 def setUp(self): 17 self.data = Loader().load("cansas1d.xml") 17 data = Loader().load("cansas1d.xml") 18 self.data = data[0] 18 19 19 20 def test_clone1D(self): … … 29 30 30 31 def setUp(self): 31 self.data = Loader().load("cansas1d.xml") 32 data = Loader().load("cansas1d.xml") 33 self.data = data[0] 32 34 33 35 def test_clone_theory1D(self):
Note: See TracChangeset
for help on using the changeset viewer.