namespace is not necessary for tests

This commit is contained in:
Chris Cromer 2019-01-15 16:45:41 -03:00
parent 61821ed05d
commit ac4338a57c
Signed by: cromer
GPG Key ID: 39CC813FF3C8708A
3 changed files with 32 additions and 38 deletions

View File

@ -1,4 +1,3 @@
namespace SernaturTest {
using LibSernatur.Misc;
public static int main (string[] args) {
@ -7,4 +6,3 @@ namespace SernaturTest {
assert (Money.format_string ("100000") == "$100.000");
return 0;
}
}

View File

@ -1,4 +1,3 @@
namespace SernaturTest {
using LibSernatur.Misc;
public static int main (string[] args) {
@ -8,4 +7,3 @@ namespace SernaturTest {
assert (Percentage.format_double (1) == "100%");
return 0;
}
}

View File

@ -1,4 +1,3 @@
namespace SernaturTest {
using LibSernatur.Misc;
public static int main (string[] args) {
@ -23,4 +22,3 @@ namespace SernaturTest {
}
return 0;
}
}