I hereby claim:
- I am bervukas on github.
- I am bvukas (https://keybase.io/bvukas) on keybase.
- I have a public key ASCP4a7mtsGfbozAVML6c0ycUCMThqd4-OF-uH4jhXfstwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Option Explicit | |
Option Private Module | |
'@TestModule | |
'@Folder("Tests") | |
Private Assert As Object | |
'@ModuleInitialize | |
Public Sub ModuleInitialize() |
'@TestMethod | |
Public Sub TestMethod1() 'TODO Rename test | |
On Error GoTo TestFail | |
'Arrange: | |
'Act: | |
'Assert: | |
Assert.Inconclusive |
// Launch Excel 2016 from '%ProgramFiles%\Microsoft Office\root\Office16\EXCEL.EXE' | |
ApplicationUnderTest excelApp = ApplicationUnderTest.Launch(this.StartAndQuitExcelParams.ExePath, this.StartAndQuitExcelParams.AlternateExePath); | |
// After Excel loads, click the 'Blank workbook' list item | |
Mouse.Click(blankWorkbookListItem, new Point(117, 182)); | |
// Select your add-in's ribbon tab | |
Mouse.Click(myAddinRibbonTab, new Point(276, 771)); | |
// Click a control on your add-in's ribbon, in order to display the VBA userform |
'@TestMethod | |
Public Sub TestMethod1() 'TODO: Rename test | |
On Error GoTo TestFail | |
'Arrange: | |
'Act: | |
'Assert: | |
Assert.Inconclusive |
Option Explicit | |
'' | |
' Validate the password length so that it's between 8-16 characters long | |
' | |
' Returns: | |
' | |
' TRUE - Password matches the lenght requirement | |
' FALSE - Password doesn't match the length requirement |
Function Test(L1 As Long, L2 As Long, Optional P1 As Variant, Optional P2 As Variant) As String | |
Dim S As String | |
If IsMissing(P1) = True Then | |
S = "P1 Is Missing." | |
Else | |
S = "P1 Is Present (P1 = " & CStr(P1) & ")" | |
End If | |
Function CreateProposal(clientName As String, | |
clientId As Integer, | |
title As String, | |
subtitle As String, | |
projectName As String, | |
reportDate As Date, | |
preparedBy As String, | |
reviewedBy As String, | |
authoredBy As String, | |
fontSize As Integer) As Boolean |
Function CalculateHourlyRate() | |
End Sub |