mirror of
https://github.com/holub/mame
synced 2025-04-25 09:50:04 +03:00
11 lines
232 B
C++
11 lines
232 B
C++
#include "gtest/gtest.h"
|
|
#include "emucore.h"
|
|
#include "eminline.h"
|
|
#include "attotime.h"
|
|
|
|
TEST(attotime,as_attoseconds)
|
|
{
|
|
attotime value = attotime::from_seconds(1);
|
|
EXPECT_EQ(1000000000000000000, value.as_attoseconds());
|
|
}
|