Zeile 6: | Zeile 6: | ||
Projektseite: http://sourceforge.net/projects/simplyvbunit/ | Projektseite: http://sourceforge.net/projects/simplyvbunit/ | ||
+ | |||
+ | Laden Sie die Setup-Datei von SimplyVBUnit 3.0 [https://www.dropbox.com/s/wlewhyb3zdq5zrk/SimplyVBUnitSetup.exe hier] herunter. | ||
+ | |||
+ | '''''*** WICHTIG***''''' | ||
+ | |||
+ | Laden Sie NICHT die SimplyVBUnit Setup-Datei von sourceforge herunter. Diese enthält mittlerweile die Version 4 von SimplyVBUnit, die nicht mehr kompatibel zu AccUnit ist. | ||
+ | |||
+ | Verwenden Sie stattdessen die Setup-Datei von [https://www.dropbox.com/s/wlewhyb3zdq5zrk/SimplyVBUnitSetup.exe SimplyVBUnit Version 3]. | ||
Seite mit Setup-Datei: http://sourceforge.net/projects/simplyvbunit/files/ | Seite mit Setup-Datei: http://sourceforge.net/projects/simplyvbunit/files/ |
SimplyVBUnit ist ein Test-Framework für VB6 und VBA, das sich an NUnit orientiert.
Projektseite: http://sourceforge.net/projects/simplyvbunit/
Laden Sie die Setup-Datei von SimplyVBUnit 3.0 hier herunter.
*** WICHTIG***
Laden Sie NICHT die SimplyVBUnit Setup-Datei von sourceforge herunter. Diese enthält mittlerweile die Version 4 von SimplyVBUnit, die nicht mehr kompatibel zu AccUnit ist.
Verwenden Sie stattdessen die Setup-Datei von SimplyVBUnit Version 3.
Seite mit Setup-Datei: http://sourceforge.net/projects/simplyvbunit/files/
Public Sub Test1() Dim testResult As Double testResult = VBA.Math.Sqr(4) Assert.AreEqual 2, testResult End Sub
Public Sub Test2() Dim testResult As Double testResult = VBA.Math.Sqr(4) Assert.That testResult, Iz.EqualTo(2) End Sub
Public Sub Test3() Dim testResult As Double testResult = VBA.Math.Sqr(4.5) Assert.That testResult, Iz.Not.EqualTo(2) End Sub