mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-06-16 14:15:26 -06:00
.autotest
git-svn-id: svn://ultimatepp.org/upp/trunk@14836 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
parent
6905a077c6
commit
f5900fc3ba
4 changed files with 39 additions and 14 deletions
18
autotest/VectorArrayN/VectorArrayN.cpp
Normal file
18
autotest/VectorArrayN/VectorArrayN.cpp
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
#include <Core/Core.h>
|
||||
|
||||
using namespace Upp;
|
||||
|
||||
CONSOLE_APP_MAIN
|
||||
{
|
||||
StdLogSetup(LOG_COUT|LOG_FILE);
|
||||
|
||||
{ Vector<int> x(20); DUMP(x.GetCount()); }
|
||||
{ Vector<int> x(20, 123); DUMP(x); }
|
||||
{ Vector<String> x(20, "123"); DUMP(x); }
|
||||
|
||||
{ Array<int> x(20); DUMP(x.GetCount()); }
|
||||
{ Array<int> x(20, 123); DUMP(x); }
|
||||
{ Array<String> x(20, "123"); DUMP(x); }
|
||||
|
||||
CheckLogEtalon();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue