Update with current status
[gnash.git] / testsuite / misc-ming.all / DefineEditTextTest-Runner.cpp
blob614b3eb62def1c7e4fc6603fae40435b8b74a782
1 /*
2 * Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
3 * Free Software Foundation, Inc.
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 3 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
22 #define INPUT_FILENAME "DefineEditTextTest.swf"
24 #include "MovieTester.h"
25 #include "MovieClip.h"
26 #include "DisplayObject.h"
27 #include "DisplayList.h"
28 #include "log.h"
30 #include "check.h"
31 #include <string>
32 #include <cassert>
34 using namespace gnash;
35 using namespace std;
37 TRYMAIN(_runtest);
38 int
39 trymain(int /*argc*/, char** /*argv*/)
41 string filename = string(TGTDIR) + string("/") + string(INPUT_FILENAME);
42 MovieTester tester(filename);
44 gnash::LogFile& dbglogfile = gnash::LogFile::getDefaultInstance();
45 dbglogfile.setVerbosity(1);
47 MovieClip* root = tester.getRootMovie();
48 assert(root);
50 check_equals(root->get_frame_count(), 5);
51 check_equals(root->getPlayState(), MovieClip::PLAYSTATE_PLAY);
52 check_equals(root->get_current_frame(), 0);
54 for (int i=0; i<30; ++i)
55 tester.advance();
57 // TODO: use check_pixel for checking bacground colors
58 return 0;