You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

github.com/Aaron70/Assertions

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/Aaron70/Assertions

v0.0.0-20240713204948-bdead4458446
Source
Go
Version published
Created
Source

Assertions Repository

This repository exposes some useful methods for unit testing in Go. Defines methods to do "assertions" on your tests to have more consice tests files.

Assertions

Assert

Asserts if the given condition is true.

func TestExampleOfUse(t *Testing.T) {
  Assertions.Assert(t, 3 == 3, "3 is equals to 3")
  Assertions.Assert(t, 3 == 0, "3 is equals to 0")
}
// Tests will fail with: "caller.go:10: Condition '3 is equals to 0' not met: expected 'true' given 'false'"

AssertEquals

Asserts if the given values expected and given are equals.

func TestExampleOfUse(t *Testing.T) {
  Assertions.Assert(t, 3, 3, "3 is equals to 3")
  Assertions.Assert(t, 3, 0, "3 is equals to 0")
}
// Tests will fail with: "caller.go:10: Condition '3 is equals to 0' not met: expected '3' given '0'"

FAQs

Package last updated on 13 Jul 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts