* attribute.cs (GetMarshal): Work even if "DefineCustom" is
[mono.git] / mcs / class / Microsoft.VisualBasic / Test / standalone / 6964.vb
1   '
2   ' Copyright (c) 2002-2003 Mainsoft Corporation.
3   '
4   ' Permission is hereby granted, free of charge, to any person obtaining a
5   ' copy of this software and associated documentation files (the "Software"),
6   ' to deal in the Software without restriction, including without limitation
7   ' the rights to use, copy, modify, merge, publish, distribute, sublicense,
8   ' and/or sell copies of the Software, and to permit persons to whom the
9   ' Software is furnished to do so, subject to the following conditions:
10   ' 
11   ' The above copyright notice and this permission notice shall be included in
12   ' all copies or substantial portions of the Software.
13   ' 
14   ' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15   ' IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16   ' FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17   ' AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18   ' LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19   ' FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20   ' DEALINGS IN THE SOFTWARE.
21   '
22 Imports Microsoft.VisualBasic
23 Public Class TestClass
24     Public Function Test() As String
25         Dim fn As Integer
26         Dim c1 As Char
27         Dim cVBCr As Char
28         Dim cVBLf As Char
29         Dim strFileName As String
30         Dim strPathName As String
31         Dim str1 As String
32         Dim str2 As String
33         
34         '// make sure all files are closed
35         Microsoft.VisualBasic.FileSystem.Reset()
36         strPathName = System.IO.Directory.GetCurrentDirectory() + "/data/"
37         strFileName = "6964.txt"
38         'if this file exists - kill it
39         If (strFileName = Dir(strPathName & strFileName)) Then
40             Kill(strPathName & strFileName)
41         End If
42         ' Write text to file.
43         fn = FreeFile()
44         FileOpen(fn, strPathName & strFileName, OpenMode.Output)
45         writeLine(fn, "1234")
46         'omit output
47         writeLine(fn)
48         writeLine(fn, "abcd")
49         FileClose(fn)
50         ' Input binary text from a file.
51         fn = FreeFile()
52         FileOpen(fn, strPathName & strFileName, OpenMode.Binary)
53         FileGet(fn, c1) 'read "
54         FileGet(fn, c1) 'read the first string
55         str1 = str1 & c1
56         FileGet(fn, c1)
57         str1 = str1 & c1
58         FileGet(fn, c1)
59         str1 = str1 & c1
60         FileGet(fn, c1)
61         str1 = str1 & c1
62         FileGet(fn, c1) 'read "
63         FileGet(fn, cVBCr) 'read the Carridge
64         FileGet(fn, cVBLf) 'read the line feed
65         'omit output
66         FileGet(fn, cVBCr) 'read the Carridge
67         FileGet(fn, cVBLf) 'read the line feed
68         FileGet(fn, c1) 'read "
69         FileGet(fn, c1) 'read the second string
70         str2 = str2 & c1
71         FileGet(fn, c1)
72         str2 = str2 & c1
73         FileGet(fn, c1)
74         str2 = str2 & c1
75         FileGet(fn, c1)
76         str2 = str2 & c1
77         FileGet(fn, c1) 'read "
78         FileClose(fn)
79         If Asc(cVBCr) <> 13 Then Return "failed to get Carrige Return"
80         If Asc(cVBLf) <> 10 Then Return "failed to get Line Feed"
81         If str1 <> "1234" Then Return "failed to get fisrt string"
82         If str2 <> "abcd" Then Return "failed to get second string"
83         Return "success"
84     End Function
85 End Class