Changeset 8e09f63 in sasview


Ignore:
Timestamp:
Apr 11, 2009 8:33:42 AM (16 years ago)
Author:
Mathieu Doucet <doucetm@…>
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:
fa58441
Parents:
27eba36
Message:

dataloader: modified unit tests

Location:
DataLoader/test
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • DataLoader/test/ascii_test_4.abs

    rd0fd4c9 r8e09f63  
    1         5           3.643          0.0286        0.002291         0.01199               1 
    2          0.0205           2.695          
    3         0.02225           2.528         0.01782        0.002404         0.02236               1 
     1        51           3.643          0.0286        0.002291         0.01199               1 
     2         0.02051           2.695          
     3        0.022251           2.528         0.01782        0.002404         0.02236               1 
    44FILE CREATED: Mon, Aug 18, 2003  
    55NSORT-ed   ssy2k004.ABS           +  ssy2k009.ABS         + none 
    66normalized to   ssy2k004.ABS 
    77multiplicative factor 1-2 =   0.88493703         multiplicative factor 2-3 =            1 
    8              10           3.742         
    9         0.2           3.643          0.0286        0.002291         0.01199               1 
    10         0.01265           3.505         0.02989        0.002296         0.01285               1 
    11              10           3.742  
    12         5           3.643          0.0286        0.002291         0.01199               1 
    13          0.0205           2.695         0.01887        0.002379         0.02062               1 
    14         0.02225           2.528         0.01782        0.002404         0.02236               1 
     8             102           3.742         
     9        0.22           3.643          0.0286        0.002291         0.01199               1 
     10        0.012652           3.505         0.02989        0.002296         0.01285               1 
     11             102           3.742  
     12        52           3.643          0.0286        0.002291         0.01199               1 
     13         0.02052           2.695         0.01887        0.002379         0.02062               1 
     14        0.022252           2.528         0.01782        0.002404         0.02236               1 
    1515FILE CREATED: Mon, Aug 18, 2003  
    1616NSORT-ed   ssy2k004.ABS           +  ssy2k009.ABS         + none 
    1717normalized to   ssy2k004.ABS 
    1818multiplicative factor 1-2 =   0.88493703         multiplicative factor 2-3 =            1 
    19         0.2           3.643          0.0286        0.002291         0.01199               1 
    20         0.01265           3.505         0.02989        0.002296         0.01285               1 
    21              10           3.742         0.02989 
    22         0.0265           3.505         0.02989        0.002296         0.01285               1 
    23         0.01527            3.27         0.02658        0.002318         0.01543               1       
    24         0.01265           3.505         0.02989        0.002296         0.01285               1 
    25         0.01353           3.428         0.02694        0.002303         0.01371               1 
    26         0.02225           2.528         0.01782        0.002404         0.02236               1 
     19        0.23           3.643          0.0286        0.002291         0.01199               1 
     20        0.012653           3.505         0.02989        0.002296         0.01285               1 
     21             103           3.742        0.02989 
     22        0.02654           3.505         0.02989        0.002296         0.01285               1 
     23        0.015274            3.27         0.02658        0.002318         0.01543               1       
     24        0.012654           3.505         0.02989        0.002296         0.01285               1 
     25        0.013534           3.428         0.02694        0.002303         0.01371               1 
     26        0.022254           2.528         0.01782        0.002404         0.02236               1 
    2727normalized to   ssy2k004.ABS 
    28         0.01527            3.27         0.02658        0.002318         0.01543               1 
     28        0.015285            3.27         0.02658        0.002318         0.01543               1 
  • DataLoader/test/utest_ascii.py

    r3617aa2 r8e09f63  
    2222        # The length of the data is 10 
    2323        self.assertEqual(len(f.x), 10) 
     24        self.assertEqual(f.x[0],0.002618) 
     25        self.assertEqual(f.x[9],0.0497) 
    2426         
    2527    def test_truncated_1(self): 
     
    3638        # The length of the data is 10 
    3739        self.assertEqual(len(f.x), 5) 
     40        self.assertEqual(f.x[0],0.002618) 
     41        self.assertEqual(f.x[4],0.02356) 
    3842         
    3943    def test_truncated_2(self): 
     
    4852        # The length of the data is 5 
    4953        self.assertEqual(len(f.x), 5) 
     54        self.assertEqual(f.x[0],0.002618) 
     55        self.assertEqual(f.x[4],0.02356) 
    5056         
    5157    def test_truncated_3(self): 
     
    6066        # The length of the data is 5 
    6167        self.assertEqual(len(f.x), 5) 
     68        self.assertEqual(f.x[0],0.02654) 
     69        self.assertEqual(f.x[4],0.022254) 
    6270         
    6371    def test_truncated_4(self): 
Note: See TracChangeset for help on using the changeset viewer.