1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
' ErrObjectTests.vb - NUnit Test Cases for Microsoft.VisualBasic.ErrObject
'
' Mizrahi Rafael (rafim@mainsoft.com)
'
'
'
' Copyright (C) 2002-2006 Mainsoft Corporation.
' Copyright (C) 2004-2006 Novell, Inc (http://www.novell.com)
'
' Permission is hereby granted, free of charge, to any person obtaining
' a copy of this software and associated documentation files (the
' "Software"), to deal in the Software without restriction, including
' without limitation the rights to use, copy, modify, merge, publish,
' distribute, sublicense, and/or sell copies of the Software, and to
' permit persons to whom the Software is furnished to do so, subject to
' the following conditions:
'
' The above copyright notice and this permission notice shall be
' included in all copies or substantial portions of the Software.
'
' THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
' EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
' MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
' NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
' LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
' OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
' WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
'
Imports NUnit.Framework
Imports System
Imports System.IO
Imports System.Collections
Imports Microsoft.VisualBasic
<TestFixture()> _
Public Class ErrObjectTests
<SetUp()> _
Public Sub GetReady()
End Sub
<TearDown()> _
Public Sub Clean()
End Sub
#Region "On Error tests"
<Test()> _
Public Sub OnError1()
On Error Resume Next
Dim i As Integer
Dim j As Integer
i = 10
j = 0
i = i / j
Assert.AreEqual(True, True)
End Sub
#End Region
#Region "Err.Number tests"
<Test()> _
Public Sub ErrNumber1()
Dim i As Integer
Dim j As Integer
Try
i = 10
j = 0
i = i / j
Catch ex As Exception
Assert.AreEqual(6, Err.Number)
End Try
End Sub
<Test()> _
Public Sub ErrNumber2()
'Dim i As Integer
Dim caughtException As Boolean
' Number is greater than 65535
'
caughtException = False
Try
Err.Raise(65536)
Catch e As ArgumentException
Assert.AreEqual(5, Err.Number)
caughtException = True
End Try
Assert.AreEqual(True, caughtException)
' Number is greater than 513
'
caughtException = False
Try
Err.Raise(514)
Catch e As Exception
Assert.AreEqual(514, Err.Number)
caughtException = True
End Try
Assert.AreEqual(True, caughtException)
End Sub
<Test()> _
Public Sub ErrNumber3()
Try
Err.Raise(vbObjectError - 1) ' vbObjectError=-2147221504
Catch e As Exception
Assert.AreEqual(vbObjectError - 1, Err.Number)
End Try
End Sub
#End Region
#Region "Raise tests"
<Test(), ExpectedException(GetType(Exception))> _
Public Sub Raise1()
Dim err As ErrObject
err = Information.Err()
err.Raise(1, "source", "description", "", 0)
End Sub
<Test(), ExpectedException(GetType(Exception))> _
Public Sub Raise2()
Dim err As ErrObject
err = Information.Err()
err.Raise(2, "source", "description", "", 0)
End Sub
<Test()> _
Public Sub Raise3()
Dim i As Integer
Dim caughtException As Boolean
For i = 1 To 600 ' more then 513 and less than 65535
caughtException = False
Try
Err.Raise(i)
Catch ex As Exception
If Err.Number = i Then
caughtException = True
End If
End Try
Assert.AreEqual(True, caughtException, "failed at sub test " & i)
'If caughtException = False Then Return "failed at sub test " & i
Next i
End Sub
#End Region
End Class
|