test("sample creation with float value and without timestamp", () => {
    const sample = new Sample("sample2", 34.76);
    expect(sample.getKey()).toEqual("sample2");
    expect(sample.getValue()).toEqual(34.76);
    expect(sample.getTimestamp()).toEqual(CommandKeyword.CURRENT_TIMESTAMP);