From a1c8c0cc67a461c4d6a4371fb66a37c59604e695 Mon Sep 17 00:00:00 2001 From: Emile Date: Sat, 16 Feb 2019 19:55:24 +0100 Subject: updated some common values --- db_actions_test.go | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/db_actions_test.go b/db_actions_test.go index 133a83d..cb1fefd 100644 --- a/db_actions_test.go +++ b/db_actions_test.go @@ -47,8 +47,8 @@ func TestCalcAllForces(t *testing.T) { database: db, star: structs.Star2D{ C: structs.Vec2{ - X: 100, - Y: 100, + X: 275, + Y: 275, }, V: structs.Vec2{ X: 0, @@ -118,7 +118,7 @@ func TestCalcAllForces(t *testing.T) { } func TestInsertStar(t *testing.T) { - // define a database + // define the connection to a database db = ConnectToDB() db.SetMaxOpenConns(75) @@ -132,7 +132,7 @@ func TestInsertStar(t *testing.T) { args args }{ { - name: "Insert a star into the database", + name: "1. Insert (100, 100) in time step 1", args: args{ database: db, star: structs.Star2D{ @@ -150,7 +150,7 @@ func TestInsertStar(t *testing.T) { }, }, { - name: "Insert a star into the database", + name: "2. Insert (150, 150) in time step 1", args: args{ database: db, star: structs.Star2D{ @@ -168,13 +168,13 @@ func TestInsertStar(t *testing.T) { }, }, { - name: "Insert a star into the database", + name: "3. Insert (100, 100) in time step 2", args: args{ database: db, star: structs.Star2D{ C: structs.Vec2{ - X: 150, - Y: 150, + X: 100, + Y: 100, }, V: structs.Vec2{ X: 0, @@ -186,13 +186,13 @@ func TestInsertStar(t *testing.T) { }, }, { - name: "Insert a star into the database", + name: "4. Insert (150, 150) in time step 2", args: args{ database: db, star: structs.Star2D{ C: structs.Vec2{ - X: 100, - Y: 100, + X: 150, + Y: 150, }, V: structs.Vec2{ X: 0, -- cgit 1.4.1