Changeset 283 for TestCase


Ignore:
Timestamp:
Jul 3, 2007, 3:57:53 AM (17 years ago)
Author:
dai
Message:

GCHandleテストケースの名前空間記述モレを修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TestCase/SimpleTestCase/GCHandleTest.ab

    r230 r283  
    99Sub TestMain()
    1010    Dim o = New Object
    11     Dim gch = GCHandle.Alloc(o)
     11    Dim gch = System.Runtime.InteropServices.GCHandle.Alloc(o)
    1212    UnitTest("GCHandle.Alloc, Target", o.Equals(gch.Target))
    1313
    14     Dim ip = GCHandle.ToIntPtr(gch)
     14    Dim ip = System.Runtime.InteropServices.GCHandle.ToIntPtr(gch)
    1515    gch = Nothing
    1616
    17     gch = GCHandle.FromIntPtr(ip)
     17    gch = System.Runtime.InteropServices.GCHandle.FromIntPtr(ip)
    1818    UnitTest("GCHandle - IntPtr", o.Equals(gch.Target))
    1919
Note: See TracChangeset for help on using the changeset viewer.