summaryrefslogtreecommitdiff
path: root/basic/qa/vba_tests
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2017-10-17 13:28:13 +0300
committerTor Lillqvist <tml@collabora.com>2017-10-17 18:57:54 +0300
commit66b3970c946bd25647484ea1ac2c2e62bd9fb7b4 (patch)
tree58db51c88253919f23245cca1dfb4c1ea5b7a6bc /basic/qa/vba_tests
parent76f102e1a96c7e0906afb11854dd5c9e24247ccb (diff)
Seems that testMiscOLEStuff() works only as 64-bit on a current Windows 10
Change-Id: Ib43f8c185d2a2e9e93f34d918d6f9461586cf6a6
Diffstat (limited to 'basic/qa/vba_tests')
-rw-r--r--basic/qa/vba_tests/ole_dfltObjDflMethod.vb24
1 files changed, 0 insertions, 24 deletions
diff --git a/basic/qa/vba_tests/ole_dfltObjDflMethod.vb b/basic/qa/vba_tests/ole_dfltObjDflMethod.vb
deleted file mode 100644
index 9ac50d9b5f9e..000000000000
--- a/basic/qa/vba_tests/ole_dfltObjDflMethod.vb
+++ /dev/null
@@ -1,24 +0,0 @@
-Option VBASupport 1
-Option Explicit
-
-Rem Test accessing an object that has default object member
-Rem which in turn has a default member that is a method
-Function doUnitTest(TestData As String, Driver as String) As String
-doUnitTest = "Begin"
-Dim modifiedTimout As Long
-Dim cnn1 As New ADODB.Connection
-Dim rst1 As New ADODB.Recordset
-Dim conStr As String
-cnn1.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
-"Data Source=" & TestData & ";" & _
-"Extended Properties=""Excel 8.0;HDR=Yes"";"
-rst1.Open "SELECT * FROM [Sheet1$];", cnn1, adOpenStatic, adLockReadOnly
-Dim val
-val = rst1("FirstName")
-If val = "Paddy" Then
- doUnitTest = "OK"
-Else
- doUnitTest = "Failed, expected 'Paddy' got " & val
-End If
-
-End Function