Ignore:
Timestamp:
Nov 9, 2008, 2:36:29 PM (15 years ago)
Author:
イグトランス (egtra)
Message:

文字列比較のテストを3引数版UnitTestの呼出に変更

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/ablib/TestCase/SimpleTestCase/StreamTest.ab

    r477 r656  
    1313    UnitTest("sr.Read() - 2", sr.Read() = &h20)
    1414    UnitTest("sr.Peek()", sr.Peek() = &h61)
    15     UnitTest("sr.ReadLine() \n", sr.ReadLine() = "abc")
    16     UnitTest("sr.ReadLine() \r\n", sr.ReadLine() = "123")
     15    UnitTest("sr.ReadLine() \n", sr.ReadLine(), "abc")
     16    UnitTest("sr.ReadLine() \r\n", sr.ReadLine(), "123")
    1717    Dim s = sr.ReadToEnd()
    18     UnitTest("sr.ReadToEnd() \r\n", s = Ex"あいうえお\r\nアイウエオ")
     18    UnitTest("sr.ReadToEnd() \r\n", s, Ex"あいうえお\r\nアイウエオ")
    1919End Sub
    2020
Note: See TracChangeset for help on using the changeset viewer.